split in env required and dynamic values

This commit is contained in:
Julian Krauser 2025-04-19 16:51:37 +02:00
parent f32143b7ac
commit 730c25a9a1
35 changed files with 491 additions and 198 deletions

View file

@ -148,3 +148,12 @@ export const reset_table = new Table({
{ name: "secret", ...getTypeByORM("varchar") },
],
});
export const setting_table = new Table({
name: "setting",
columns: [
{ name: "topic", ...getTypeByORM("varchar"), isPrimary: true },
{ name: "key", ...getTypeByORM("varchar"), isPrimary: true },
{ name: "value", ...getTypeByORM("text") },
],
});