categories_of_groups
0 rows where internal_groups = "Ho(Cat)"
This data as json
0 records
CREATE TABLE "categories_of_groups" (
"internal_groups" TEXT NOT NULL,
"parent" TEXT NOT NULL UNIQUE,
FOREIGN KEY("parent") REFERENCES "categories"("name"),
FOREIGN KEY("internal_groups") REFERENCES "categories"("name"),
PRIMARY KEY("parent")
);