db changes

This commit is contained in:
2025-12-07 17:11:26 +01:00
parent 0f3c8c862f
commit 76e40cd9e1
6 changed files with 27 additions and 27 deletions

View File

@@ -9,7 +9,7 @@ import {
} from "drizzle-orm/pg-core"
import { tenants } from "./tenants"
import { inventoryItems } from "./inventoryitems"
import { inventoryitems } from "./inventoryitems"
import { projects } from "./projects"
import { vehicles } from "./vehicles"
import { authUsers } from "./auth_users"
@@ -33,7 +33,7 @@ export const costcentres = pgTable("costcentres", {
project: bigint("project", { mode: "number" }).references(() => projects.id),
inventoryitem: bigint("inventoryitem", { mode: "number" }).references(
() => inventoryItems.id
() => inventoryitems.id
),
description: text("description"),