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