UriReference
0 rows where why = 33
This data as json
0 records
CREATE TABLE "UriReference" (
"content" INTEGER NOT NULL,
"target" INTEGER,
"why" INTEGER,
"id" INTEGER,
CONSTRAINT "NoDupRefs" UNIQUE("content","target","why"),
PRIMARY KEY("id"),
FOREIGN KEY("content") REFERENCES "Hash"("id"),
FOREIGN KEY("target") REFERENCES "Str"("id"),
FOREIGN KEY("why") REFERENCES "Str"("id")
) STRICT;
CREATE INDEX UriReferenceIdx
ON UriReference(target, content);