CREATE TABLE promo_codes_usage (
    id uuid NOT NULL,
    remaining BIGINT,
    FOREIGN KEY(id) REFERENCES promo_codes_meta(id)
);
