From 160124a18494982cf3c5ccaa315d60761ca817f1 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Tue, 20 Jan 2026 13:55:10 +0100 Subject: [PATCH] fix for #68 --- backend/db/schema/hourrates.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),