CREATE TABLE billing_account_description_history (
    history_event_id SERIAL PRIMARY KEY,
    history_user_id uuid NOT NULL,
    history_originator_id text,
    history_action text NOT NULL,
    history_timestamp integer NOT NULL,
    history_comment text,

    id int,
    type character varying(20) NOT NULL,
    name text NOT NULL,
    hard_limit bigint NOT NULL,
    soft_limit bigint NOT NULL,
    meta json
);
