fixes bug#12989

dev:Valdevir
qua:Leonardo


git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@90998 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdevir 2019-03-20 20:09:22 +00:00
parent 6f037f9721
commit 3d2efc8764
1 changed files with 4 additions and 1 deletions

View File

@ -4,9 +4,12 @@ declare
begin begin
execute immediate 'ALTER TABLE ESTACION ADD TIPOIMPRESSORARELATORIO NUMBER(2)'; execute immediate 'ALTER TABLE ESTACION ADD TIPOIMPRESSORARELATORIO NUMBER(2)';
exception when column_exists then null; exception when column_exists then null;
execute immediate 'COMMENT ON COLUMN ESTACION.TIPOIMPRESSORARELATORIO IS ''1-A4, 2-Térmica''';
end; end;
/ /
begin
execute immediate 'COMMENT ON COLUMN ESTACION.TIPOIMPRESSORARELATORIO IS ''1-A4, 2-Térmica''';
end
/
declare declare
object_exists exception; object_exists exception;
pragma exception_init (object_exists , -00001); pragma exception_init (object_exists , -00001);