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