create database seeder for the services for testing environment

This commit is contained in:
omair saleh
2021-03-12 15:44:43 +08:00
parent 732824db0e
commit 3e1188f242
6 changed files with 4 additions and 56 deletions
@@ -15,29 +15,8 @@ class CurrenciesTableDevelopmentSeeder extends Seeder
public function run()
{
\DB::table('currencies')->insert(array (
0 =>
array (
'id' => 1,
'country_id' => 1,
'name' => 'Malaysian Ringgit',
'short_code' => 'MYR',
'symbol' => 'RM',
'deleted_at' => NULL,
'created_at' => '2021-03-09 07:30:20',
'updated_at' => '2021-03-09 07:30:20',
),
1 =>
array (
'id' => 2,
'country_id' => 2,
'name' => 'Yuan Renminbi',
'short_code' => 'RMB',
'symbol' => '¥',
'deleted_at' => NULL,
'created_at' => '2021-03-09 07:30:20',
'updated_at' => '2021-03-09 07:30:20',
),
2 =>
array (
'id' => 3,