0 rows where arrows = "Alg(Ab)"

View and edit SQL

0 records

CREATE TABLE "arrow_categories" (
	"category"	TEXT NOT NULL UNIQUE,
	"arrows"	TEXT NOT NULL,
	FOREIGN KEY("arrows") REFERENCES "categories"("name") on delete restrict on update cascade,
	FOREIGN KEY("category") REFERENCES "categories"("name") on delete restrict on update cascade,
	PRIMARY KEY("category")
);