CREATE TABLE chat_views (
    chat_id integer not null,
    user_id uuid not null,
    last_viewed_message_id integer
);
