schema changes

This commit is contained in:
2025-12-08 11:45:37 +01:00
parent e760bd5f97
commit 8f0efc0d72

View File

@@ -23,15 +23,15 @@ export const statementallocations = pgTable("statementallocations", {
id: uuid("id").primaryKey().defaultRandom(),
// foreign keys
bs_id: integer("bs_id")
bankstatement: integer("bs_id")
.notNull()
.references(() => bankstatements.id),
cd_id: integer("cd_id").references(() => createddocuments.id),
createddocument: integer("cd_id").references(() => createddocuments.id),
amount: doublePrecision("amount").notNull().default(0),
ii_id: bigint("ii_id", { mode: "number" }).references(
incominginvoice: bigint("ii_id", { mode: "number" }).references(
() => incominginvoices.id
),
@@ -43,7 +43,7 @@ export const statementallocations = pgTable("statementallocations", {
() => accounts.id
),
createdAt: timestamp("created_at", {
created_at: timestamp("created_at", {
withTimezone: false,
}).defaultNow(),
@@ -57,9 +57,9 @@ export const statementallocations = pgTable("statementallocations", {
vendor: bigint("vendor", { mode: "number" }).references(() => vendors.id),
updatedAt: timestamp("updated_at", { withTimezone: true }),
updated_at: timestamp("updated_at", { withTimezone: true }),
updatedBy: uuid("updated_by").references(() => authUsers.id),
updated_by: uuid("updated_by").references(() => authUsers.id),
archived: boolean("archived").notNull().default(false),
})