Add override for limits

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

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")
});