mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-01 20:15:29 +02:00
- Introduced a new "fullContext" JSONB column in the "rollback" table to store additional context for rollbacks. - Removed the "env" column from the "rollback" table to streamline data management. - Updated the rollbacks service to handle the new "fullContext" field during rollback creation. - Adjusted the application service to eliminate environment variable handling in rollback operations.
2 lines
120 B
SQL
2 lines
120 B
SQL
ALTER TABLE "rollback" ADD COLUMN "fullContext" jsonb;--> statement-breakpoint
|
|
ALTER TABLE "rollback" DROP COLUMN "env"; |