diff --git a/src/db/migration/V20210331_0925__jira237.sql b/src/db/migration/V20210331_0925__jira237.sql new file mode 100644 index 000000000..4a59ed058 --- /dev/null +++ b/src/db/migration/V20210331_0925__jira237.sql @@ -0,0 +1,9 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate + 'ALTER TABLE CONVENIO ADD (STATUS VARCHAR2(2))'; + exception when object_exists then null; +end; +/ \ No newline at end of file