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

    vin TEXT NOT NULL,
    start_date INTEGER,
    date INTEGER,
    mileage FLOAT NOT NULL,
    is_intermediate BOOLEAN,
    source TEXT
);
