// Offering related tables
export const offeringProperties = pgTable('offering_attributes', {
// ...summarized and simplified
id: serial('id').primaryKey().notNull(),
location: text().notNull(),
deadline: timestamp({ mode: 'date' }).notNull(),
amount: numeric().notNull(),
total: numeric().notNull(),
minimumAmount: numeric().notNull(),
rate: numeric().notNull(),
description: text().notNull()
});
// Offering related tables
export const offeringProperties = pgTable('offering_attributes', {
// ...summarized and simplified
id: serial('id').primaryKey().notNull(),
location: text().notNull(),
deadline: timestamp({ mode: 'date' }).notNull(),
amount: numeric().notNull(),
total: numeric().notNull(),
minimumAmount: numeric().notNull(),
rate: numeric().notNull(),
description: text().notNull()
});