ALTER TABLE currencies
    ADD COLUMN country_id BIGINT UNSIGNED NULL AFTER name,
    ADD COLUMN country_region VARCHAR(120) NULL AFTER country_id,
    ADD CONSTRAINT fk_currency_country FOREIGN KEY (country_id) REFERENCES countries (id);
