From e3b91bb665f178d6811d1173edb58c5b7278de43 Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 23 Nov 2023 16:53:20 +0000 Subject: [PATCH] added notes to materials table --- src/app/db/migrations/meta/_journal.json | 7 +++++++ src/app/db/schema/materials.ts | 1 + 2 files changed, 8 insertions(+) diff --git a/src/app/db/migrations/meta/_journal.json b/src/app/db/migrations/meta/_journal.json index 5bcd929b..182afbfd 100644 --- a/src/app/db/migrations/meta/_journal.json +++ b/src/app/db/migrations/meta/_journal.json @@ -337,6 +337,13 @@ "when": 1700758121692, "tag": "0047_curved_psynapse", "breakpoints": true + }, + { + "idx": 48, + "version": "5", + "when": 1700758387956, + "tag": "0048_salty_katie_power", + "breakpoints": true } ] } \ No newline at end of file diff --git a/src/app/db/schema/materials.ts b/src/app/db/schema/materials.ts index a8a59e90..398d2708 100644 --- a/src/app/db/schema/materials.ts +++ b/src/app/db/schema/materials.ts @@ -83,4 +83,5 @@ export const material = pgTable("material", { plant_cost: real("plant_cost"), total_cost: real("total_cost"), cost: json("cost").$type(), + notes: text("notes"), });