mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ServiceTypesTableDevelopmentSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
\DB::table('service_types')->delete();
|
|
|
|
\DB::table('service_types')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'name' => 'X1 Transfer',
|
|
'status' => '2',
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 07:52:56',
|
|
'updated_at' => '2021-03-09 09:57:40',
|
|
),
|
|
1 =>
|
|
array (
|
|
'id' => 2,
|
|
'name' => 'X1 Transfer (P)',
|
|
'status' => '5',
|
|
'deleted_at' => '2021-03-09 09:50:10',
|
|
'created_at' => '2021-03-09 09:35:55',
|
|
'updated_at' => '2021-03-09 09:50:10',
|
|
),
|
|
2 =>
|
|
array (
|
|
'id' => 3,
|
|
'name' => 'x9',
|
|
'status' => '5',
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 09:36:26',
|
|
'updated_at' => '2021-03-09 09:55:26',
|
|
),
|
|
3 =>
|
|
array (
|
|
'id' => 4,
|
|
'name' => 'X3 Service',
|
|
'status' => '2',
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-09 10:09:11',
|
|
'updated_at' => '2021-03-09 10:09:11',
|
|
),
|
|
4 =>
|
|
array (
|
|
'id' => 5,
|
|
'name' => 'M3',
|
|
'status' => '2',
|
|
'deleted_at' => NULL,
|
|
'created_at' => '2021-03-11 06:34:23',
|
|
'updated_at' => '2021-03-11 06:34:23',
|
|
),
|
|
));
|
|
|
|
|
|
}
|
|
} |