diff --git a/src/db/migration/V20171205_2010__mantis10317.sql b/src/db/migration/V20171205_2010__mantis10317.sql new file mode 100644 index 000000000..714c868e1 --- /dev/null +++ b/src/db/migration/V20171205_2010__mantis10317.sql @@ -0,0 +1,8 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE MD_DOCUMENTO MODIFY (NUMEROINICIAL NUMBER(15), + NUMEROFINAL NUMBER(15) )'; + exception when column_exists then null; +end; \ No newline at end of file