enrichments
0 rows where homs = "Cluster"
This data as json
0 records
CREATE TABLE "enrichments" (
"category" TEXT NOT NULL,
"homs" TEXT NOT NULL,
FOREIGN KEY("homs") REFERENCES "categories"("name") on update cascade on delete restrict,
FOREIGN KEY("category") REFERENCES "categories"("name") on update cascade on delete restrict,
PRIMARY KEY("category","homs")
);