Add org settings column

This commit is contained in:
Owen 2025-09-29 09:54:06 -07:00
parent dbba5002d9
commit e34a31941d
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
2 changed files with 4 additions and 2 deletions

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", {