Make org subnet optional

This commit is contained in:
Owen 2025-07-16 11:35:38 -07:00
parent 1dff9baa61
commit 021bc073a2
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
6 changed files with 31 additions and 4 deletions

View file

@ -16,7 +16,7 @@ export const domains = sqliteTable("domains", {
export const orgs = sqliteTable("orgs", {
orgId: text("orgId").primaryKey(),
name: text("name").notNull(),
subnet: text("subnet").notNull(),
subnet: text("subnet")
});
export const userDomains = sqliteTable("userDomains", {