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