mirror of
https://github.com/fosrl/pangolin.git
synced 2025-08-28 13:48:13 +02:00
Add createdAt to org
This commit is contained in:
parent
0151f8a6a9
commit
ea6f803e78
2 changed files with 4 additions and 2 deletions
|
@ -23,7 +23,8 @@ export const domains = pgTable("domains", {
|
|||
export const orgs = pgTable("orgs", {
|
||||
orgId: varchar("orgId").primaryKey(),
|
||||
name: varchar("name").notNull(),
|
||||
subnet: varchar("subnet")
|
||||
subnet: varchar("subnet"),
|
||||
createdAt: text("createdAt")
|
||||
});
|
||||
|
||||
export const orgDomains = pgTable("orgDomains", {
|
||||
|
|
|
@ -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", {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue