full_subdiagrams
0 rows where subshape = "endomorphism"
This data as json
0 records
CREATE TABLE "full_subdiagrams" (
"subshape" TEXT NOT NULL,
"shape" TEXT NOT NULL,
FOREIGN KEY("subshape") REFERENCES "diagrams"("shape") on update cascade on delete restrict,
FOREIGN KEY("shape") REFERENCES "diagrams"("shape") on update cascade on delete restrict,
PRIMARY KEY("subshape","shape")
);