System: |
|
Fields
MovieID |
integer |
|
|
|
|
|
|
|
StreamID |
integer |
|
|
|
|
|
|
|
Subs_Language |
text |
|
|
|
|
|
|
|
Subs_LongLanguage |
text |
|
|
|
|
|
|
|
Subs_Type |
text |
|
|
|
|
|
|
|
Subs_Path |
text |
|
|
|
|
|
|
|
Subs_Forced |
bool |
|
|
|
0 |
|
|
|
Indexes
Foreign keys
There are no foreign keys for table "moviessubs"
Checks
There are no checks for table "moviessubs"
Triggers
There are no triggers for table "moviessubs"
References
There are no references for table "moviessubs"
Definition:
CREATE TABLE MoviesSubs (
MovieID integer NOT NULL,
StreamID integer NOT NULL,
Subs_Language text,
Subs_LongLanguage text,
Subs_Type text,
Subs_Path text,
Subs_Forced bool NOT NULL DEFAULT 0,
PRIMARY KEY (MovieID, StreamID)
);