Add missing new domain cols

This commit is contained in:
Owen 2025-07-14 10:56:10 -07:00
parent 98a261e38c
commit b17ff57582
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

View file

@ -7,7 +7,10 @@ export const domains = sqliteTable("domains", {
configManaged: integer("configManaged", { mode: "boolean" })
.notNull()
.default(false),
type: text("type") // "ns", "cname", "a"
type: text("type"), // "ns", "cname", "a"
verified: integer("verified", { mode: "boolean" }).notNull().default(false),
failed: integer("failed", { mode: "boolean" }).notNull().default(false),
tries: integer("tries").notNull().default(0)
});
export const orgs = sqliteTable("orgs", {