remove org settings json

This commit is contained in:
miloschwartz
2025-10-23 14:22:50 -07:00
parent c1bb029a1c
commit 5a7b5d65a4
4 changed files with 7 additions and 28 deletions

View File

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