98 lines
2.6 KiB
PHP
98 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class LoveReactionTypesTableSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Auto generated seed file
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
|
|
|
|
\DB::table('love_reaction_types')->delete();
|
|
|
|
\DB::table('love_reaction_types')->insert(array (
|
|
0 =>
|
|
array (
|
|
'id' => 1,
|
|
'name' => 'Star',
|
|
'mass' => 1,
|
|
'created_at' => '2023-08-05 03:51:05',
|
|
'updated_at' => '2023-06-13 22:42:51',
|
|
),
|
|
1 =>
|
|
array (
|
|
'id' => 2,
|
|
'name' => 'Bookmark',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-06 16:11:43',
|
|
'updated_at' => '2025-08-06 16:11:43',
|
|
),
|
|
2 =>
|
|
array (
|
|
'id' => 3,
|
|
'name' => 'Like',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-06 16:12:22',
|
|
'updated_at' => '2025-08-06 16:12:22',
|
|
),
|
|
3 =>
|
|
array (
|
|
'id' => 4,
|
|
'name' => 'Dislike',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-06 16:12:33',
|
|
'updated_at' => '2025-08-06 16:12:33',
|
|
),
|
|
4 =>
|
|
array (
|
|
'id' => 5,
|
|
'name' => 'Vote',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-06 16:12:47',
|
|
'updated_at' => '2025-08-06 16:12:47',
|
|
),
|
|
5 =>
|
|
array (
|
|
'id' => 6,
|
|
'name' => 'Work',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-10 15:07:26',
|
|
'updated_at' => '2025-08-10 15:07:26',
|
|
),
|
|
6 =>
|
|
array (
|
|
'id' => 7,
|
|
'name' => 'Gift',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-10 15:07:36',
|
|
'updated_at' => '2025-08-10 15:07:36',
|
|
),
|
|
7 =>
|
|
array (
|
|
'id' => 8,
|
|
'name' => 'Donation',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-10 15:07:52',
|
|
'updated_at' => '2025-08-10 15:07:52',
|
|
),
|
|
8 =>
|
|
array (
|
|
'id' => 9,
|
|
'name' => 'Reserve',
|
|
'mass' => 1,
|
|
'created_at' => '2025-08-10 15:08:00',
|
|
'updated_at' => '2025-08-10 15:08:00',
|
|
),
|
|
));
|
|
|
|
|
|
}
|
|
} |