export const offerSkills = pgTable("offer_skills", {
id: uuid().defaultRandom().primaryKey().notNull(),
offerId: uuid().notNull(),
skillId: uuid().notNull(),
mandatory: boolean("mandatory"),
createdAt: timestamp("created_at", { mode: 'string' }).defaultNow().notNull(),
updatedAt: timestamp("updated_at", { mode: 'string' }).defaultNow().notNull(),
})
export const offerSkills = pgTable("offer_skills", {
id: uuid().defaultRandom().primaryKey().notNull(),
offerId: uuid().notNull(),
skillId: uuid().notNull(),
mandatory: boolean("mandatory"),
createdAt: timestamp("created_at", { mode: 'string' }).defaultNow().notNull(),
updatedAt: timestamp("updated_at", { mode: 'string' }).defaultNow().notNull(),
})