disconnected_categories
1 row where category = "Field"
This data as json, CSV (advanced)
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "disconnected_categories" (
"category" TEXT NOT NULL UNIQUE,
FOREIGN KEY("category") REFERENCES "categories"("name") on update cascade on delete restrict,
PRIMARY KEY("category")
);