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