AdmMono/src/db/migration/V20170529_1419__mantis9091.sql

9 lines
303 B
SQL

declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE PUNTO_VENTA ADD(TAXACONVENIENCIAPORC NUMBER(7,2),
MAXIMOTAXACONVENIENCIA NUMBER(7,2))';
exception when column_exists then null;
end;