1CREATE TABLE "identity_credential_identifiers" ( 2"id" TEXT PRIMARY KEY, 3"identifier" TEXT NOT NULL, 4"identity_credential_id" char(36) NOT NULL, 5"created_at" DATETIME NOT NULL, 6"updated_at" DATETIME NOT NULL, 7FOREIGN KEY (identity_credential_id) REFERENCES identity_credentials (id) ON DELETE cascade 8)