Fix for error creating db

This commit is contained in:
morpheus65535 2018-08-29 19:39:16 -04:00
parent 801370c693
commit b2dac1e69b
1 changed files with 3 additions and 2 deletions

View File

@ -62,8 +62,9 @@ CREATE TABLE "table_movies" (
`fanart` TEXT,
`audio_language` "text",
`sceneName` TEXT,
`monitored` TEXT, PRIMARY KEY(`tmdbId`),
`failedAttempts` "text"
`monitored` TEXT,
`failedAttempts` "text",
PRIMARY KEY(`tmdbId`)
);
CREATE TABLE "table_history_movie" (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,