69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
import {
|
|
pgTable,
|
|
uuid,
|
|
bigint,
|
|
timestamp,
|
|
integer,
|
|
text,
|
|
boolean,
|
|
numeric,
|
|
} from "drizzle-orm/pg-core"
|
|
|
|
import { tenants } from "./tenants"
|
|
import { authUsers } from "./auth_users"
|
|
import { timesStateEnum } from "./enums"
|
|
import {sql} from "drizzle-orm";
|
|
|
|
export const staffTimeEntries = pgTable("staff_time_entries", {
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
|
|
tenantId: bigint("tenant_id", { mode: "number" })
|
|
.notNull()
|
|
.references(() => tenants.id),
|
|
|
|
userId: uuid("user_id")
|
|
.notNull()
|
|
.references(() => authUsers.id, { onDelete: "cascade" }),
|
|
|
|
startedAt: timestamp("started_at", { withTimezone: true }).notNull(),
|
|
stoppedAt: timestamp("stopped_at", { withTimezone: true }),
|
|
|
|
durationMinutes: integer("duration_minutes").generatedAlwaysAs(
|
|
sql`CASE
|
|
WHEN stopped_at IS NOT NULL
|
|
THEN (EXTRACT(epoch FROM (stopped_at - started_at)) / 60)
|
|
ELSE NULL
|
|
END`
|
|
),
|
|
|
|
type: text("type").default("work"),
|
|
|
|
description: text("description"),
|
|
|
|
createdAt: timestamp("created_at", { withTimezone: true }).defaultNow(),
|
|
updatedAt: timestamp("updated_at", { withTimezone: true }).defaultNow(),
|
|
|
|
archived: boolean("archived").notNull().default(false),
|
|
|
|
updatedBy: uuid("updated_by").references(() => authUsers.id),
|
|
|
|
source: text("source"),
|
|
|
|
state: timesStateEnum("state").notNull().default("draft"),
|
|
|
|
device: uuid("device"),
|
|
|
|
internalNote: text("internal_note"),
|
|
|
|
vacationReason: text("vacation_reason"),
|
|
vacationDays: numeric("vacation_days", { precision: 5, scale: 2 }),
|
|
|
|
approvedBy: uuid("approved_by").references(() => authUsers.id),
|
|
approvedAt: timestamp("approved_at", { withTimezone: true }),
|
|
|
|
sickReason: text("sick_reason"),
|
|
})
|
|
|
|
export type StaffTimeEntry = typeof staffTimeEntries.$inferSelect
|
|
export type NewStaffTimeEntry = typeof staffTimeEntries.$inferInsert
|