export const price = pgTable("price", {
id: uuid().primaryKey().defaultRandom().notNull(),
name: varchar({ length: 255 }).notNull(),
buy: integer().notNull(),
sell: integer().notNull(),
lastUpdatedAt: timestamp({ withTimezone: true, mode: "string" })
.defaultNow()
.notNull(),
});
export const price = pgTable("price", {
id: uuid().primaryKey().defaultRandom().notNull(),
name: varchar({ length: 255 }).notNull(),
buy: integer().notNull(),
sell: integer().notNull(),
lastUpdatedAt: timestamp({ withTimezone: true, mode: "string" })
.defaultNow()
.notNull(),
});