diff --git a/src/db/migration/V20240927_1447__AL-5017.sql b/src/db/migration/V20240927_1447__AL-5017.sql new file mode 100644 index 000000000..466f669ac --- /dev/null +++ b/src/db/migration/V20240927_1447__AL-5017.sql @@ -0,0 +1,15 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE PARADA ADD LATITUDE NUMBER(10,8)'; + exception when column_exists then null; +end; +/ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE PARADA ADD LONGITUDE NUMBER(11,8)'; + exception when column_exists then null; +end; \ No newline at end of file