-- Add up migration script here CREATE TABLE "activation_token" ( "user_id" uuid NOT NULL, "token" character varying(255) NOT NULL, "created_at" timestamp DEFAULT CURRENT_TIMESTAMP, "updated_at" timestamp DEFAULT CURRENT_TIMESTAMP, CONSTRAINT "activation_token_user_id_token" PRIMARY KEY ("user_id", "token") ) WITH (oids = false);