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

    name text NOT NULL,
    type text NOT NULL,
    comment text,
    meta json,
    revision BIGINT,
    display_name text,
    default_priority integer,
    description_index integer
);
