61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class PropertyAdditionalInfoKeyLocaleSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
\DB::table('property_additional_info_key_locale')->delete();
|
|
|
|
\DB::table('property_additional_info_key_locale')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'additional_info_key_id' => 1,
|
|
'additional_info_key' => 'Building Year',
|
|
'locale' => 'en',
|
|
'status' => 1,
|
|
'created_by' => 1,
|
|
'updated_by' => 1,
|
|
'created_at' => 1,
|
|
'updated_at' => 1,
|
|
),
|
|
1 =>
|
|
array (
|
|
'id' => 2,
|
|
'additional_info_key_id' => 2,
|
|
'additional_info_key' => 'Restoration Year',
|
|
'locale' => 'en',
|
|
'status' => 1,
|
|
'created_by' => 1,
|
|
'updated_by' => 1,
|
|
'created_at' => 1,
|
|
'updated_at' => 1,
|
|
),
|
|
2 =>
|
|
array (
|
|
'id' => 3,
|
|
'additional_info_key_id' => 3,
|
|
'additional_info_key' => 'Room Count',
|
|
'locale' => 'en',
|
|
'status' => 1,
|
|
'created_by' => 1,
|
|
'updated_by' => 1,
|
|
'created_at' => 1,
|
|
'updated_at' => 1,
|
|
),
|
|
));
|
|
|
|
|
|
}
|
|
}
|