diff --git a/backend/db/schema/hourrates.ts b/backend/db/schema/hourrates.ts index 299c2d5..e6afae0 100644 --- a/backend/db/schema/hourrates.ts +++ b/backend/db/schema/hourrates.ts @@ -14,7 +14,7 @@ export const hourrates = pgTable("hourrates", { name: text("name").notNull(), - purchasePrice: doublePrecision("purchasePrice").notNull(), + purchase_price: doublePrecision("purchasePrice").notNull(), sellingPrice: doublePrecision("sellingPrice").notNull(), archived: boolean("archived").notNull().default(false),