diff --git a/src/db/migration/V20190513_1428__mantis14659.sql b/src/db/migration/V20190513_1428__mantis14659.sql new file mode 100644 index 000000000..f0a3a3aa5 --- /dev/null +++ b/src/db/migration/V20190513_1428__mantis14659.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESQUEMA_CORRIDA MODIFY (CANTPARADOS NUMBER(7, 0) )'; + exception when object_exists then null; +end; \ No newline at end of file