mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
14 lines
215 B
PHP
14 lines
215 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Setting;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class SettingTableSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Setting::set('media_path', '');
|
|
}
|
|
}
|