Add agent_config_revisions table for tracking agent configuration changes with rollback support. Add issue_approvals junction table linking issues to approvals. New migrations (0005, 0006) for permissions column and new tables. Rework migration client with statement-level idempotency checks (table/column/index/constraint existence) so migrations can be safely retried against partially-migrated databases. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
29 lines
1.3 KiB
TypeScript
29 lines
1.3 KiB
TypeScript
import { pgTable, uuid, text, timestamp, jsonb, index } from "drizzle-orm/pg-core";
|
|
import { companies } from "./companies.js";
|
|
import { agents } from "./agents.js";
|
|
|
|
export const agentConfigRevisions = pgTable(
|
|
"agent_config_revisions",
|
|
{
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
companyId: uuid("company_id").notNull().references(() => companies.id),
|
|
agentId: uuid("agent_id").notNull().references(() => agents.id, { onDelete: "cascade" }),
|
|
createdByAgentId: uuid("created_by_agent_id").references(() => agents.id, { onDelete: "set null" }),
|
|
createdByUserId: text("created_by_user_id"),
|
|
source: text("source").notNull().default("patch"),
|
|
rolledBackFromRevisionId: uuid("rolled_back_from_revision_id"),
|
|
changedKeys: jsonb("changed_keys").$type<string[]>().notNull().default([]),
|
|
beforeConfig: jsonb("before_config").$type<Record<string, unknown>>().notNull(),
|
|
afterConfig: jsonb("after_config").$type<Record<string, unknown>>().notNull(),
|
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
|
|
},
|
|
(table) => ({
|
|
companyAgentCreatedIdx: index("agent_config_revisions_company_agent_created_idx").on(
|
|
table.companyId,
|
|
table.agentId,
|
|
table.createdAt,
|
|
),
|
|
agentCreatedIdx: index("agent_config_revisions_agent_created_idx").on(table.agentId, table.createdAt),
|
|
}),
|
|
);
|