feat(server): add defaultAutoRotateIntervalDays to instance settings schema and API

This commit is contained in:
Jannis Braun
2026-04-01 01:22:41 +02:00
parent df0608d744
commit 83074e40ef
3 changed files with 17 additions and 0 deletions
+6
View File
@@ -215,6 +215,12 @@ export function runMigrations(db: Database.Database): void {
{ name: 'federation_relay_ttl_days', type: 'INTEGER NOT NULL DEFAULT 30' },
]
},
{
name: 'instance_settings',
columns: [
{ name: 'default_auto_rotate_interval_days', type: 'INTEGER NOT NULL DEFAULT 90' },
]
},
{
name: 'federation_peers',
columns: [