diff --git a/lib/schema.ts b/lib/schema.ts index 966a3ca..3f839fd 100644 --- a/lib/schema.ts +++ b/lib/schema.ts @@ -5,7 +5,7 @@ export const user = pgTable('users', { id: serial('id').primaryKey(), name: text('name'), email: text('email'), - hashedPassword: text('password'), + hashedPassword: text('password').notNull(), createdAt: timestamp('created_at'), updatedAt: timestamp('updated_at'), })