diff --git a/src/db/migration/V20190327_1200__mantis13748.sql b/src/db/migration/V20190327_1200__mantis13748.sql new file mode 100644 index 000000000..46fd5729f --- /dev/null +++ b/src/db/migration/V20190327_1200__mantis13748.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CTRL_SERIE_EMBARCADA ADD CTRLSERIEEMBARCADASEQ_ID NUMBER(8)'; + exception when column_exists then null; +end; \ No newline at end of file