Files
dokploy/apps/dokploy/drizzle/0094_true_marvel_zombies.sql
Mauricio Siu f8baf6fe41 feat: add fullContext column to rollback table and update related functionality
- 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.
2025-06-02 21:02:17 -06:00

2 lines
120 B
SQL

ALTER TABLE "rollback" ADD COLUMN "fullContext" jsonb;--> statement-breakpoint
ALTER TABLE "rollback" DROP COLUMN "env";