Add user first and last name fields to signup form
This commit is contained in:
@@ -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(),
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user