Add org settings column

This commit is contained in:
Owen
2025-09-29 09:54:06 -07:00
parent dbba5002d9
commit e34a31941d
2 changed files with 4 additions and 2 deletions

View File

@@ -25,7 +25,8 @@ export const orgs = pgTable("orgs", {
orgId: varchar("orgId").primaryKey(),
name: varchar("name").notNull(),
subnet: varchar("subnet"),
createdAt: text("createdAt")
createdAt: text("createdAt"),
settings: text("settings") // JSON blob of org-specific settings
});
export const orgDomains = pgTable("orgDomains", {

View File

@@ -18,7 +18,8 @@ export const orgs = sqliteTable("orgs", {
orgId: text("orgId").primaryKey(),
name: text("name").notNull(),
subnet: text("subnet"),
createdAt: text("createdAt")
createdAt: text("createdAt"),
settings: text("settings") // JSON blob of org-specific settings
});
export const userDomains = sqliteTable("userDomains", {