MyVideos48 |
Table "tag" |
System: |
Field | Data type | PK | FK | Not Null | Default | Collate | Check | On Conflict |
---|---|---|---|---|---|---|---|---|
idTag | integer | |||||||
strTag | text |
Index | Fields | Primary | Unique |
---|---|---|---|
ix_tag_1 | strTag |
CREATE TABLE tag (
idTag integer PRIMARY KEY,
strTag text
);
CREATE UNIQUE INDEX ix_tag_1
ON tag
(strTag);
Generated by ""SQLite Maestro Professional"" at 08.07.2021 23:49:20 |