mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-28 09:19:37 +02:00
Add user first and last name fields to signup form
This commit is contained in:
parent
372db59211
commit
ba6a5283fe
12 changed files with 273 additions and 10 deletions
|
@ -21,6 +21,8 @@ export const sharedAdventures = pgTable("sharedAdventures", {
|
|||
export const userTable = pgTable("user", {
|
||||
id: text("id").primaryKey(),
|
||||
username: text("username").notNull(),
|
||||
first_name: text("first_name").notNull(),
|
||||
last_name: text("last_name").notNull(),
|
||||
hashed_password: varchar("hashed_password").notNull(),
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue