mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-18 21:55:24 +02:00
- Updated the application, mariadb, mongo, mysql, postgres, and redis schemas to include an optional `args` field for command arguments. - Enhanced the AddCommand and ShowCustomCommand components to handle multiple arguments using a dynamic form. - Modified the database build functions to incorporate the new `args` parameter when creating containers. - Added SQL migrations to update the database schema for existing applications and services to accommodate the new `args` field.
6 lines
406 B
SQL
6 lines
406 B
SQL
ALTER TABLE "application" ADD COLUMN "args" text[];--> statement-breakpoint
|
|
ALTER TABLE "mariadb" ADD COLUMN "args" text[];--> statement-breakpoint
|
|
ALTER TABLE "mongo" ADD COLUMN "args" text[];--> statement-breakpoint
|
|
ALTER TABLE "mysql" ADD COLUMN "args" text[];--> statement-breakpoint
|
|
ALTER TABLE "postgres" ADD COLUMN "args" text[];--> statement-breakpoint
|
|
ALTER TABLE "redis" ADD COLUMN "args" text[]; |