0 rows where base = "Rng"

View and edit SQL

0 records

CREATE TABLE "maybe_monads" (
	"base"	TEXT NOT NULL UNIQUE,
	"pointed"	TEXT NOT NULL UNIQUE,
	FOREIGN KEY("base") REFERENCES "categories"("name") on delete restrict on update cascade,
	FOREIGN KEY("pointed") REFERENCES "categories"("name") on delete restrict on update cascade,
	PRIMARY KEY("base","pointed")
);