| MyVideos48 |
| Table "art" |
![]() |
| System: | ![]() |
| Field | Data type | PK | FK | Not Null | Default | Collate | Check | On Conflict |
|---|---|---|---|---|---|---|---|---|
| art_id | integer | ![]() |
||||||
| media_id | integer | |||||||
| media_type | text | |||||||
| type | text | |||||||
| url | text |
| Index | Fields | Primary | Unique |
|---|---|---|---|
| ix_art | media_id, media_type, type |
CREATE TABLE art (
art_id integer PRIMARY KEY,
media_id integer,
media_type text,
type text,
url text
);
CREATE INDEX ix_art
ON art
(media_id, media_type, type);
![]() |
| Generated by ""SQLite Maestro Professional"" at 08.07.2021 23:49:20 |