0 rows where parent = "TracedSymmMonCat"

View and edit SQL

0 records

CREATE TABLE "categories_of_monoids" (
	"internal_monoids"	TEXT NOT NULL UNIQUE,
	"parent"	TEXT NOT NULL UNIQUE,
	FOREIGN KEY("parent") REFERENCES "categories"("name") on update cascade on delete restrict,
	PRIMARY KEY("parent","internal_monoids"),
	FOREIGN KEY("internal_monoids") REFERENCES "categories"("name") on update cascade on delete restrict
);