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