alter table supermag.smcard modify country default 'Россия';
CREATE OR REPLACE TRIGGER "SUPERMAG"."OK_COUNTRY" before insert on SUPERMAG.SMCARD for each row begin if :new.Country is null then :new.Country:='Россия'; end if; end; /