mirror of
https://github.com/koel/koel
synced 2024-12-28 05:23:05 +00:00
17 lines
324 B
PHP
17 lines
324 B
PHP
<?php
|
|
|
|
use App\Models\Artist;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ArtistTableSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Artist::firstOrCreate([
|
|
'id' => Artist::UNKNOWN_ID
|
|
], [
|
|
'id' => Artist::UNKNOWN_ID,
|
|
'name' => Artist::UNKNOWN_NAME,
|
|
]);
|
|
}
|
|
}
|