save floors to db
This commit is contained in:
parent
4b9620be7f
commit
b0ffcb838f
6 changed files with 83 additions and 57 deletions
|
@ -14,3 +14,8 @@ export const sessions = pgTable("sessions", {
|
|||
.references(() => users.id),
|
||||
expiresAt: timestamp({ withTimezone: true, mode: "date" }).notNull(),
|
||||
});
|
||||
|
||||
export const floors = pgTable("floors", {
|
||||
floor: integer().primaryKey(),
|
||||
url: text().notNull(),
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue