content_types

6 rows

View and edit SQL

id name
1 text/html; charset=utf-8
2 text/css
3 text/plain
4 application/javascript
5 application/json; charset=utf-8
6 text/plain; charset=utf-8

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE [content_types] (
   [id] INTEGER PRIMARY KEY,
   [name] TEXT
);
CREATE UNIQUE INDEX idx_content_types_name
                ON content_types (name);
Powered by Datasette · Query took 5.63ms