CREATE TABLE user_roles (
    role_id text NOT NULL,
    user_id uuid NOT NULL,
    deadline bigint,
    data text,
    active boolean DEFAULT true,
    forced boolean,

    PRIMARY KEY(role_id, user_id),
    FOREIGN KEY(role_id) REFERENCES "drive_roles"(role_id),
    FOREIGN KEY(user_id) REFERENCES "user"(id)
);
