export const meetings = mysqlTable("meetings", {
id: varchar("id", { length: 255 }).notNull().primaryKey(),
clubId: varchar("clubId", { length: 255 }).notNull(),
name: varchar("name", { length: 255 }).notNull(),
description: varchar("description", { length: 255 }).notNull(),
image: varchar("image", { length: 255 }).notNull(),
isPublic: boolean("isPublic").default(false).notNull(),
date: timestamp("date", { mode: "date" }).notNull(),
});
export const meetings = mysqlTable("meetings", {
id: varchar("id", { length: 255 }).notNull().primaryKey(),
clubId: varchar("clubId", { length: 255 }).notNull(),
name: varchar("name", { length: 255 }).notNull(),
description: varchar("description", { length: 255 }).notNull(),
image: varchar("image", { length: 255 }).notNull(),
isPublic: boolean("isPublic").default(false).notNull(),
date: timestamp("date", { mode: "date" }).notNull(),
});