More work on calc config

This commit is contained in:
Dominic Ferrando
2026-07-04 02:13:02 -04:00
parent 1da9795d84
commit f85225e08f
6 changed files with 39 additions and 96 deletions
@@ -30,7 +30,7 @@ export async function up(db: Kysely<any>): Promise<void> {
// TABLE: CALCULATOR_CONFIGS
await db.schema.createTable("calculator_configs")
.$call(addDefaultColumns)
.addColumn("parameters", "jsonb", (cb) => cb.notNull())
.addColumn("standards_config", "jsonb", (cb) => cb.notNull())
.addColumn("is_selected", "boolean", (cb) => cb.notNull())
.execute();