CREATE TABLE chat_stickers_history (
    history_event_id SERIAL PRIMARY KEY,
    history_user_id character varying(36) NOT NULL,
    history_originator_id text,
    history_action text NOT NULL,
    history_timestamp integer NOT NULL,
    history_comment text,

    id uuid,
    url text,
    position integer,
    is_active boolean,
    emoji text
);
