From 801370c693977b05b5fe4632943b5b87880d3c7f Mon Sep 17 00:00:00 2001 From: Halali Date: Thu, 30 Aug 2018 01:02:18 +0200 Subject: [PATCH] fix create_db --- create_db.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/create_db.sql b/create_db.sql index 93c815ee4..387834a64 100644 --- a/create_db.sql +++ b/create_db.sql @@ -45,8 +45,8 @@ CREATE TABLE "table_episodes" ( `subtitles` TEXT, `missing_subtitles` TEXT, `scene_name` TEXT, - `monitored` TEXT - 'failedAttempts' 'text' + `monitored` TEXT, + `failedAttempts` "text" ); CREATE TABLE "table_movies" ( `tmdbId` TEXT NOT NULL UNIQUE, @@ -62,8 +62,8 @@ CREATE TABLE "table_movies" ( `fanart` TEXT, `audio_language` "text", `sceneName` TEXT, - `monitored` TEXT, PRIMARY KEY(`tmdbId`) - 'failedAttempts' 'text' + `monitored` TEXT, PRIMARY KEY(`tmdbId`), + `failedAttempts` "text" ); CREATE TABLE "table_history_movie" ( `id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,