export const users = pgTable("user", {
id: text("id").notNull().primaryKey(),
name: text("name"),
email: text("email").notNull(),
field: text("field").default("testing"),
emailVerified: timestamp("emailVerified", { mode: "date" }).defaultNow(),
image: text("image"),
});