Files
api-extranetwork/database/seeds/PropertyGoogleLabelSeeder.php
ExtraNetwork e5c4b6aa13 first commit
2026-05-12 17:04:54 +03:00

124 lines
3.6 KiB
PHP

<?php
use Illuminate\Database\Seeder;
class PropertyGoogleLabelSeeder extends Seeder
{
/**
* Auto generated seed file
*
* @return void
*/
public function run()
{
\DB::table('photo_google_label')->delete();
\DB::table('photo_google_label')->insert(array (
0 =>
array (
'id' => 1,
'label' => 'Resort',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
1 =>
array (
'id' => 2,
'label' => 'Building',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
2 =>
array (
'id' => 3,
'label' => 'Property',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
3 =>
array (
'id' => 4,
'label' => 'Hotel',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
4 =>
array (
'id' => 5,
'label' => 'Home',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
5 =>
array (
'id' => 6,
'label' => 'Bar',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
6 =>
array (
'id' => 7,
'label' => 'Pub',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
7 =>
array (
'id' => 8,
'label' => 'Disco',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
8 =>
array (
'id' => 9,
'label' => 'Tavern',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
9 =>
array (
'id' => 10,
'label' => 'Nightclub',
'status' => 1,
'created_by' => 1,
'updated_by' => 1,
'created_at' => 1,
'updated_at' => 1,
),
));
}
}