Add override for limits

This commit is contained in:
Owen
2026-02-10 21:28:56 -08:00
parent 8207e49317
commit f2e69dfb96
3 changed files with 33 additions and 0 deletions

View File

@@ -140,6 +140,7 @@ export const limits = pgTable("limits", {
})
.notNull(),
value: real("value"),
override: boolean("override").default(false),
description: text("description")
});

View File

@@ -129,6 +129,7 @@ export const limits = sqliteTable("limits", {
})
.notNull(),
value: real("value"),
override: integer("override", { mode: "boolean" }).default(false),
description: text("description")
});