Nelson
5/21/2018 - 8:54 AM

Currency Code

Insert currency code into DB

begin;

set local creativesystems.logged_user to 'system';

INSERT INTO master.currency_code(
            chain, country_id, country, currency)
    VALUES (1, 20, 'Sweden', 'SEK');
    
commit;