mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 04:24:00 +00:00
large commit
This commit is contained in:
@@ -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()
|
||||
// ]
|
||||
// ]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user