update selection algorithm

This commit is contained in:
miloschwartz 2025-06-22 17:19:32 -04:00
parent f3b44a3085
commit d45443258b
No known key found for this signature in database
4 changed files with 117 additions and 85 deletions

View file

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