datasette_tags

0 rows where datasette_id = 7

View and edit SQL

0 records

CREATE TABLE datasette_tags (
            datasette_id integer,
            tag text,
            PRIMARY KEY (datasette_id, tag),
            FOREIGN KEY (datasette_id) REFERENCES datasettes(id),
            FOREIGN KEY (tag) REFERENCES tags(tag)
        );
Powered by Datasette · Query took 7.518ms