mirror of
https://github.com/fosrl/pangolin.git
synced 2025-12-14 03:56:54 +00:00
Add missing new domain cols
This commit is contained in:
@@ -7,7 +7,10 @@ export const domains = sqliteTable("domains", {
|
|||||||
configManaged: integer("configManaged", { mode: "boolean" })
|
configManaged: integer("configManaged", { mode: "boolean" })
|
||||||
.notNull()
|
.notNull()
|
||||||
.default(false),
|
.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", {
|
export const orgs = sqliteTable("orgs", {
|
||||||
|
|||||||
Reference in New Issue
Block a user