export const users = mysqlTable("users", {
id: varchar("id", { length: 36 })
.primaryKey()
.default(sql`(uuid())`)
.notNull(),
email: varchar("email", { length: 255 }).notNull(),
profileImageUrl: varchar("profile_image_url", { length: 255 }),
name: varchar("name", { length: 255 }).notNull(),
});
export const users = mysqlTable("users", {
id: varchar("id", { length: 36 })
.primaryKey()
.default(sql`(uuid())`)
.notNull(),
email: varchar("email", { length: 255 }).notNull(),
profileImageUrl: varchar("profile_image_url", { length: 255 }),
name: varchar("name", { length: 255 }).notNull(),
});