limits
0 rows where diagram = "point"
This data as json
0 records
CREATE TABLE "limits" (
"diagram" TEXT NOT NULL,
"is_colimit" INTEGER NOT NULL,
"construction" TEXT NOT NULL,
FOREIGN KEY("construction") REFERENCES "universal_objects"("construction") on update cascade on delete restrict,
FOREIGN KEY("diagram") REFERENCES "diagrams"("shape") on update cascade on delete restrict,
PRIMARY KEY("diagram","is_colimit","construction")
);