CREATE TABLE drive_actions_standart_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,

    action_id text NOT NULL,
    action_description text,
    action_meta text,
    action_type text NOT NULL,
    enabled boolean,
    deprecated boolean,
    landing text,
    id integer,
    action_revision BIGINT,
    parent text
);
