mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-26 21:54:38 +02:00
Add missing new domain cols
This commit is contained in:
parent
98a261e38c
commit
b17ff57582
1 changed files with 4 additions and 1 deletions
|
@ -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", {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue