mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
17 lines
260 B
PHP
17 lines
260 B
PHP
<?php
|
|
|
|
use App\Models\Setting;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SettingTableSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
Setting::set('media_path', '');
|
|
}
|
|
}
|