AdmMono/src/db/migration/V20170426_1758__mantis8946.sql

13 lines
410 B
SQL

declare
object_exists exception;
pragma exception_init (object_exists , -00001);
begin
execute immediate 'UPDATE TIPO_EVENTO_EXTRA
SET CVETIPOEVENTO = ''SEGURO_OPCIONAL''
WHERE TIPOEVENTOEXTRA_ID IN (
SELECT VALORCONSTANTE
FROM CONSTANTE
WHERE NOMBCONSTANTE = ''TIPO_EE_SEGURO_OPCIONAL''
)';
exception when object_exists then null;
end;