feat: [CDE-681]: Add column if not exists (#3552)

* feat: [CDE-681]: Drop column if exists
* feat: [CDE-681]: Add column if not exists
try-new-ui
Vikyath Harekal 2025-03-13 05:32:12 +00:00 committed by Harness
parent fb0387e64f
commit 7f9c549b95
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
ALTER TABLE delegate_provision_details DROP COLUMN dpdeta_task_details;
ALTER TABLE delegate_provision_details DROP COLUMN IF EXISTS dpdeta_task_details;

View File

@ -1 +1 @@
ALTER TABLE delegate_provision_details ADD COLUMN dpdeta_task_details jsonb;
ALTER TABLE delegate_provision_details ADD COLUMN IF NOT EXISTS dpdeta_task_details jsonb;