AdmMono/src/db/migration/V20171101_1601__mantis9930.sql

7 lines
279 B
SQL

declare
object_exists exception;
pragma exception_init (object_exists , -00001);
begin
execute immediate 'UPDATE FORMA_PAGO SET DESCPAGO = ''GERACAO OCD'', CVEPAGO = ''GO'', FECMODIF = sysdate WHERE FORMAPAGO_ID = 35';
exception when object_exists then null;
end;