AdmMono/src/db/postgresql/migration/V20181109_1606__mantis12283...

7 lines
229 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE EMPRESA ADD ( ANTIFRAUDEKEY VARCHAR2(50) )';
exception when column_exists then null;
end;