diff --git a/src/db/migration/V20170809_1658__mantis9069.sql b/src/db/migration/V20170809_1658__mantis9069.sql new file mode 100644 index 000000000..c8cc8e3dd --- /dev/null +++ b/src/db/migration/V20170809_1658__mantis9069.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02260); +begin + execute immediate 'ALTER TABLE PARADA ADD (DESCPROCON VARCHAR2(48))'; + exception when object_exists then null; +end; \ No newline at end of file