Spaces:
Paused
Paused
| import { pgTable, uuid, text, timestamp, index } from "drizzle-orm/pg-core"; | |
| import { companies } from "./companies.js"; | |
| import { issues } from "./issues.js"; | |
| import { agents } from "./agents.js"; | |
| import { heartbeatRuns } from "./heartbeat_runs.js"; | |
| export const issueComments = pgTable( | |
| "issue_comments", | |
| { | |
| id: uuid("id").primaryKey().defaultRandom(), | |
| companyId: uuid("company_id").notNull().references(() => companies.id), | |
| issueId: uuid("issue_id").notNull().references(() => issues.id), | |
| authorAgentId: uuid("author_agent_id").references(() => agents.id), | |
| authorUserId: text("author_user_id"), | |
| createdByRunId: uuid("created_by_run_id").references(() => heartbeatRuns.id, { onDelete: "set null" }), | |
| body: text("body").notNull(), | |
| createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(), | |
| updatedAt: timestamp("updated_at", { withTimezone: true }).notNull().defaultNow(), | |
| }, | |
| (table) => ({ | |
| issueIdx: index("issue_comments_issue_idx").on(table.issueId), | |
| companyIdx: index("issue_comments_company_idx").on(table.companyId), | |
| companyIssueCreatedAtIdx: index("issue_comments_company_issue_created_at_idx").on( | |
| table.companyId, | |
| table.issueId, | |
| table.createdAt, | |
| ), | |
| companyAuthorIssueCreatedAtIdx: index("issue_comments_company_author_issue_created_at_idx").on( | |
| table.companyId, | |
| table.authorUserId, | |
| table.issueId, | |
| table.createdAt, | |
| ), | |
| }), | |
| ); | |