CREATE TABLE user_landings (
    user_id uuid NOT NULL,
    landing_id text NOT NULL,
    accepted boolean DEFAULT NULL,
    accept_comment text,
    last_accepted_at integer,

    PRIMARY KEY(user_id, landing_id),
    FOREIGN KEY(user_id) REFERENCES "user"(id),
    FOREIGN KEY(landing_id) REFERENCES "drive_landings"(landing_id)
);
