Add domain type

This commit is contained in:
Owen
2025-06-22 12:58:33 -04:00
parent 317a15b649
commit 9680260104
2 changed files with 4 additions and 2 deletions

View File

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