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

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