Add applyRules to resources

This commit is contained in:
Owen 2025-02-06 21:19:55 -05:00
parent befdc3a002
commit b92639647a
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

View file

@ -54,7 +54,8 @@ export const resources = sqliteTable("resources", {
emailWhitelistEnabled: integer("emailWhitelistEnabled", { mode: "boolean" })
.notNull()
.default(false),
isBaseDomain: integer("isBaseDomain", { mode: "boolean" })
isBaseDomain: integer("isBaseDomain", { mode: "boolean" }),
applyRules: integer("applyRules", { mode: "boolean" }).notNull().default(false)
});
export const targets = sqliteTable("targets", {