import { int, mysqlTable, varchar } from "drizzle-orm/mysql-core"; export const usersTable = mysqlTable("users_table", { id: int().primaryKey().autoincrement(), name: varchar("name", { length: 255 }).notNull(), age: int().notNull(), email: varchar("email", { length: 255 }).notNull().unique(), });