home / sidx_000

UriReference

0 rows where content = 3293

✎ View and edit SQL

This data as json

0 records

CREATE TABLE UriReference(
    content INTEGER,
    target INTEGER,
    why INTEGER,
    PRIMARY KEY (content, target, why),
    FOREIGN KEY(content) REFERENCES Hash(id),
    FOREIGN KEY(target) REFERENCES Str(id), /* E.g. Uri or Path */
    FOREIGN KEY(why) REFERENCES Str(id) /* E.g. "href" */
);
CREATE INDEX UriReferenceIdx
ON UriReference(target, content);
Powered by Datasette · Queries took 13.498ms