1CREATE TABLE "selfservice_registration_request_methods" ( 2"id" UUID NOT NULL, 3PRIMARY KEY("id"), 4"method" VARCHAR (32) NOT NULL, 5"selfservice_registration_request_id" UUID NOT NULL, 6"config" jsonb NOT NULL, 7"created_at" timestamp NOT NULL, 8"updated_at" timestamp NOT NULL, 9FOREIGN KEY ("selfservice_registration_request_id") REFERENCES "selfservice_registration_requests" ("id") ON DELETE cascade 10)