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