fixes bug#20278

dev:wallace
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@103075 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago.clemente 2020-08-28 13:21:32 +00:00
parent 08048940c9
commit 16c59bccb8
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE CATEGORIA_DESCUENTO MODIFY (ASIENTOSRESERVADOS VARCHAR2(100 BYTE))';
exception when column_exists then null;
end;

View File

@ -0,0 +1,5 @@
DO $$
BEGIN
ALTER TABLE CATEGORIA_DESCUENTO MODIFY (ASIENTOSRESERVADOS VARCHAR2(100 BYTE));
END
$$;