|
@@ -10,7 +10,8 @@ class CreateTicketSettings extends SettingsMigration
|
|
|
$table_exists = DB::table('settings_old')->exists();
|
|
|
|
|
|
// Get the user-set configuration values from the old table.
|
|
|
- $this->migrator->add('ticket.enabled', $table_exists ? $this->getOldValue('SETTINGS::TICKET:ENABLED') : 'all');
|
|
|
+ $this->migrator->add('ticket.enabled', $table_exists ? $this->getOldValue('SETTINGS::TICKET:ENABLED') : 'true');
|
|
|
+ $this->migrator->add('ticket.notify', $table_exists ? $this->getOldValue('SETTINGS::TICKET:NOTIFY') : 'all');
|
|
|
}
|
|
|
|
|
|
public function down(): void
|