Skip to content

Commit

Permalink
fix: correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Fractal-Tess committed May 31, 2024
1 parent 832b9b3 commit 43f189f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db/schema/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import { int, mysqlTable, varchar } from 'drizzle-orm/mysql-core';
export const user = mysqlTable('user', {
id: int('id').primaryKey().autoincrement(),
username: varchar('username', { length: 64 }).notNull(),
eamil: varchar('email', { length: 320 }).notNull(),
email: varchar('email', { length: 320 }).notNull(),
passwordHash: varchar('passwordHash', { length: 255 }).notNull(),
});

0 comments on commit 43f189f

Please sign in to comment.