chore: 🌱 Added enable_upgrade setting to seeder

This commit is contained in:
IceToast 2022-08-16 22:37:40 +02:00
parent ff5ad1e2bd
commit 07825b0b4b

View file

@ -508,5 +508,12 @@ class SettingsSeeder extends Seeder
'type' => 'string',
'description' => 'The Client API Key of an Pterodactyl Admin Account'
]);
Settings::firstOrCreate([
'key' => 'SETTINGS::SYSTEM:ENABLE_UPGRADE',
], [
'value' =>"",
'type' => 'string',
'description' => 'Enables the updgrade/downgrade feature for servers'
]);
}
}