Skip to content

Commit b05a663

Browse files
269 sql script fix (#5579)
1 parent 9361de5 commit b05a663

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ALTER TABLE "image_scan_execution_result" DROP COLUMN "version";
2-
ALTER TABLE "image_scan_execution_result" DROP COLUMN "fixed_version";
1+
ALTER TABLE "image_scan_execution_result" DROP COLUMN IF EXISTS "version";
2+
ALTER TABLE "image_scan_execution_result" DROP COLUMN IF EXISTS "fixed_version";
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
ALTER TABLE "image_scan_execution_result" ADD COLUMN "version" text;
2-
ALTER TABLE "image_scan_execution_result" ADD COLUMN "fixed_version" text;
1+
ALTER TABLE "image_scan_execution_result" ADD COLUMN IF NOT EXISTS "version" text;
2+
ALTER TABLE "image_scan_execution_result" ADD COLUMN IF NOT EXISTS "fixed_version" text;

0 commit comments

Comments
 (0)