CREATE TABLE promo_code_types (
    id BIGSERIAL PRIMARY KEY,
    name text NOT NULL,
    profit_description text NOT NULL,
    generator text
);
