0 rows where category = "CPROP"

View and edit SQL

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")
);