Delete database/seeds directory
This commit is contained in:
parent
f3e99daa8a
commit
8cea04208a
2 changed files with 0 additions and 73 deletions
|
@ -1,31 +0,0 @@
|
|||
<?php
|
||||
|
||||
use App\User;
|
||||
use Illuminate\Database\Seeder;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
class DatabaseSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Seed the application's database.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
$this->call(PermissionSeeder::class);
|
||||
$user = User::create([
|
||||
'firstname' => 'Admin',
|
||||
'surname' => '',
|
||||
'email' => 'admin@localhost',
|
||||
'password' => Hash::make('admin'),
|
||||
]);
|
||||
|
||||
DB::table('users')->where('id', $user->id)->update([
|
||||
'email_verified_at' => DB::raw('CURRENT_TIMESTAMP')
|
||||
]);
|
||||
|
||||
$user->assignRole('administrator');
|
||||
}
|
||||
}
|
Reference in a new issue