diff --git a/src/db/migration/V20180601_1704__mantis11052.sql b/src/db/migration/V20180601_1704__mantis11052.sql new file mode 100644 index 000000000..2729256aa --- /dev/null +++ b/src/db/migration/V20180601_1704__mantis11052.sql @@ -0,0 +1,9 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE SECRETARIA add RUT NUMBER(12)'; + execute immediate 'ALTER TABLE SECRETARIA add DIRSECRETARIA VARCHAR(60)'; + execute immediate 'ALTER TABLE SECRETARIA add CIUDAD VARCHAR(60)'; + exception when object_exists then null; +end; \ No newline at end of file