diff --git a/src/db/migration/V20170921_1910__mantis000.sql b/src/db/migration/V20170921_1910__mantis000.sql new file mode 100644 index 000000000..5fcc5a46c --- /dev/null +++ b/src/db/migration/V20170921_1910__mantis000.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'alter table corrida add INTEGRADOTOTVS NUMBER(1,0)'; + exception when object_exists then null; +end;