diff --git a/src/db/migration/V20180502_1355__mantis10992.sql b/src/db/migration/V20180502_1355__mantis10992.sql new file mode 100644 index 000000000..542408cc3 --- /dev/null +++ b/src/db/migration/V20180502_1355__mantis10992.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -00001); +begin + execute immediate 'UPDATE PERFIL_FUNCION SET INDLECTURA = 1 WHERE INDLECTURA IS NULL'; + exception when column_exists then null; +end; \ No newline at end of file