23 lines
490 B
PHP
23 lines
490 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Seeders;
|
||
|
|
||
|
use Illuminate\Database\Seeder;
|
||
|
use Illuminate\Support\Facades\DB;
|
||
|
use Illuminate\Support\Carbon;
|
||
|
|
||
|
class FavoriteSongsSeeder extends Seeder
|
||
|
{
|
||
|
/**
|
||
|
* Run the database seeds.
|
||
|
*/
|
||
|
public function run(): void
|
||
|
{
|
||
|
DB::table('FavoriteSongs')->insert([
|
||
|
'songNumber' => 999996,
|
||
|
'userPhone' => '0912345678',
|
||
|
'created_at' => Carbon::now(),
|
||
|
'updated_at' => Carbon::now(),
|
||
|
]);
|
||
|
}
|
||
|
}
|