Add createdAt to org

This commit is contained in:
Owen 2025-07-31 17:51:30 -07:00
parent 0151f8a6a9
commit ea6f803e78
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
2 changed files with 4 additions and 2 deletions

View file

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