diff --git a/src/db/migration/V20190221_1045__mantis13649.sql b/src/db/migration/V20190221_1045__mantis13649.sql new file mode 100644 index 000000000..696532aa0 --- /dev/null +++ b/src/db/migration/V20190221_1045__mantis13649.sql @@ -0,0 +1,13 @@ +declare + + column_exists exception; + + pragma exception_init (column_exists , -01430); + +begin + + execute immediate 'ALTER TABLE VTABOL.TARIFA MODIFY TARIFA_ID NUMBER(10,0)'; + + exception when column_exists then null; + +end; \ No newline at end of file