mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-16 10:50:38 +09:00
27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
|
|
import { pgTable, uuid, text, timestamp, index } from "drizzle-orm/pg-core";
|
||
|
|
import { companies } from "./companies.js";
|
||
|
|
import { approvals } from "./approvals.js";
|
||
|
|
import { agents } from "./agents.js";
|
||
|
|
|
||
|
|
export const approvalComments = pgTable(
|
||
|
|
"approval_comments",
|
||
|
|
{
|
||
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
||
|
|
companyId: uuid("company_id").notNull().references(() => companies.id),
|
||
|
|
approvalId: uuid("approval_id").notNull().references(() => approvals.id),
|
||
|
|
authorAgentId: uuid("author_agent_id").references(() => agents.id),
|
||
|
|
authorUserId: text("author_user_id"),
|
||
|
|
body: text("body").notNull(),
|
||
|
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
},
|
||
|
|
(table) => ({
|
||
|
|
companyIdx: index("approval_comments_company_idx").on(table.companyId),
|
||
|
|
approvalIdx: index("approval_comments_approval_idx").on(table.approvalId),
|
||
|
|
approvalCreatedIdx: index("approval_comments_approval_created_idx").on(
|
||
|
|
table.approvalId,
|
||
|
|
table.createdAt,
|
||
|
|
),
|
||
|
|
}),
|
||
|
|
);
|