-- Add up migration script here CREATE TABLE UserRoles ( user_id INTEGER NOT NULL, role_id INTEGER NOT NULL, assigned_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), PRIMARY KEY (user_id, role_id) );