mirror of
https://github.com/koel/koel
synced 2024-12-28 05:23:05 +00:00
12 lines
186 B
PHP
12 lines
186 B
PHP
<?php
|
|
|
|
use App\Models\Setting;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SettingTableSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Setting::set('media_path', '');
|
|
}
|
|
}
|