large commit

This commit is contained in:
Omair Saleh
2019-10-07 11:24:31 +08:00
parent 42596146c9
commit 9ddfe429fb
@@ -30,28 +30,28 @@ class CreateUserTable extends Migration
$table->timestamps();
});
DB::table('users')->insert([
[
'first_name' => 'Omair',
'last_name' => 'Saleh',
'email' => 'omair@izyim.com',
'password' => Hash::make('123456abcabc'),
'verified' => 1,
'role_id' => UserRoles::SUPER_ADMIN,
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now()
],
[
'first_name' => 'Development',
'last_name' => 'User',
'email' => env('EMAIL_DEVELOPMENT', 'dev@izyim.com'),
'password' => Hash::make('123456abcabc'),
'verified' => 1,
'role_id' => UserRoles::ADMIN,
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now()
]
]);
// DB::table('users')->insert([
// [
// 'first_name' => 'Omair',
// 'last_name' => 'Saleh',
// 'email' => 'omair@izyim.com',
// 'password' => Hash::make('123456abcabc'),
// 'verified' => 1,
// 'role_id' => UserRoles::SUPER_ADMIN,
// 'created_at' => \Carbon\Carbon::now(),
// 'updated_at' => \Carbon\Carbon::now()
// ],
// [
// 'first_name' => 'Development',
// 'last_name' => 'User',
// 'email' => env('EMAIL_DEVELOPMENT', 'dev@izyim.com'),
// 'password' => Hash::make('123456abcabc'),
// 'verified' => 1,
// 'role_id' => UserRoles::ADMIN,
// 'created_at' => \Carbon\Carbon::now(),
// 'updated_at' => \Carbon\Carbon::now()
// ]
// ]);
}
/**