This commit is contained in:
2025-12-07 22:40:15 +01:00
parent 5968329c8f
commit d33b908775
5 changed files with 10 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ import {
import { tenants } from "./tenants"
import { authProfiles } from "./auth_profiles"
import { staffTimeEntries } from "./staff_time_entries"
import { stafftimeentries } from "./staff_time_entries"
export const staffZeitstromTimestamps = pgTable("staff_zeitstromtimestamps", {
id: uuid("id").primaryKey().defaultRandom(),
@@ -32,7 +32,7 @@ export const staffZeitstromTimestamps = pgTable("staff_zeitstromtimestamps", {
time: timestamp("time", { withTimezone: true }).notNull(),
staffTimeEntry: uuid("staff_time_entry").references(
() => staffTimeEntries.id
() => stafftimeentries.id
),
internalNote: text("internal_note"),