CREATE TABLE drive_area_propositions (
    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,

    confirmations_need integer NOT NULL,
    proposition_id text NOT NULL,
    proposition_meta text,

    area_id text NOT NULL,
    area_coords text NOT NULL,
    area_tags text,
    area_title text,
    area_index INTEGER DEFAULT 0,
    area_type TEXT,
    area_tooltip TEXT,
    revision BIGINT NOT NULL,
    area_details JSON
);
