export const users = pgTable('users', {
id: integer('id').primaryKey().generatedAlwaysAsIdentity(),
username: varchar('username', { length: 256 }).notNull(),
email: varchar('email', { length: 256 }).notNull().unique(),
passwordHash: text('password_hash').notNull()
})
export const users = pgTable('users', {
id: integer('id').primaryKey().generatedAlwaysAsIdentity(),
username: varchar('username', { length: 256 }).notNull(),
email: varchar('email', { length: 256 }).notNull().unique(),
passwordHash: text('password_hash').notNull()
})