mirror of
https://github.com/koel/koel
synced 2024-11-14 16:37:28 +00:00
18 lines
312 B
PHP
18 lines
312 B
PHP
<?php
|
|
|
|
use App\Models\Artist;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ArtistTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run()
|
|
{
|
|
Artist::create([
|
|
'id' => Artist::UNKNOWN_ID,
|
|
'name' => Artist::UNKNOWN_NAME,
|
|
]);
|
|
}
|
|
}
|