1 row where construction = "pushout"

View and edit SQL

Link diagram is_colimit construction
span 1 pushout

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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")
);