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