Add override for limits

This commit is contained in:
Owen
2026-02-10 21:28:56 -08:00
committed by Owen Schwartz
parent 7ce5134415
commit f95e2f1f0e
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")
});