mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-04 01:55:10 +02:00
Add domain type
This commit is contained in:
parent
317a15b649
commit
9680260104
2 changed files with 4 additions and 2 deletions
|
@ -12,7 +12,8 @@ import { InferSelectModel } from "drizzle-orm";
|
|||
export const domains = pgTable("domains", {
|
||||
domainId: varchar("domainId").primaryKey(),
|
||||
baseDomain: varchar("baseDomain").notNull(),
|
||||
configManaged: boolean("configManaged").notNull().default(false)
|
||||
configManaged: boolean("configManaged").notNull().default(false),
|
||||
type: varchar("type").notNull(), // "ns", "cname", "a"
|
||||
});
|
||||
|
||||
export const orgs = pgTable("orgs", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue