© 2026 Hedgehog Software, LLC
ActionDependencyList_pkey
-- AlterTable ALTER TABLE "ActionDependencyList" DROP CONSTRAINT "ActionDependencyList_pkey", --->here ADD COLUMN "filename" TEXT NOT NULL, DROP COLUMN "actions", ADD COLUMN "actions" TEXT[], ADD CONSTRAINT "ActionDependencyList_pkey" PRIMARY KEY ("repository_id", "filename"); -- AlterTable ALTER TABLE "DailyRunnerCost" RENAME CONSTRAINT "CostTable_pkey" TO "DailyRunnerCost_pkey"; -- AddForeignKey ALTER TABLE "ActionDependencyList" ADD CONSTRAINT "ActionDependencyList_repository_id_fkey" FOREIGN KEY ("repository_id") REFERENCES "Repository"("repository_id") ON DELETE RESTRICT ON UPDATE CASCADE;