added advanced section to general page & custom host header field

This commit is contained in:
Matthias Palmetshofer 2025-04-15 13:17:46 +02:00
parent 64a2cc23c6
commit 25c125b96d
No known key found for this signature in database
6 changed files with 199 additions and 38 deletions

View file

@ -11,6 +11,9 @@ export default async function migration() {
trx.run(
sql`ALTER TABLE 'resources' ADD 'tlsServerName' text DEFAULT '' NOT NULL;`
);
trx.run(
sql`ALTER TABLE 'resources' ADD 'setHostHeader' text DEFAULT '' NOT NULL;`
);
});
console.log(`Migrated database schema`);