import { pgTable, uuid, varchar, timestamp, boolean } from 'drizzle-orm/pg-core'; import { sql } from 'drizzle-orm'; export const users = pgTable('users', { id: uuid('id') .primaryKey() .default(sql`gen_random_uuid()`), email: varchar('email', { length: 255 }).notNull().unique(), password: varchar('password', { length: 255 }).notNull(), firstName: varchar('first_name', { length: 100 }), lastName: varchar('last_name', { length: 100 }), isActive: boolean('is_active').notNull().default(true), createdAt: timestamp('created_at').notNull().defaultNow(), updatedAt: timestamp('updated_at').notNull().defaultNow(), }); export type User = typeof users.$inferSelect; export type NewUser = typeof users.$inferInsert;