diff --git a/bazarr.py b/bazarr.py index 81b544324..ff0dd8407 100644 --- a/bazarr.py +++ b/bazarr.py @@ -2,8 +2,8 @@ bazarr_version = '0.1.1' from bottle import route, run, template, static_file, request, redirect import bottle -#bottle.debug(True) -#bottle.TEMPLATES.clear() +bottle.debug(True) +bottle.TEMPLATES.clear() import os bottle.TEMPLATE_PATH.insert(0,os.path.join(os.path.dirname(__file__), 'views/')) diff --git a/create_db.sql b/create_db.sql index a29b2fdf1..f60878a46 100644 --- a/create_db.sql +++ b/create_db.sql @@ -41,11 +41,6 @@ CREATE TABLE "table_settings_general" ( `auto_update` INTEGER ); INSERT INTO `table_settings_general` (ip,port,base_url,path_mapping,log_level, branch, auto_update) VALUES ('0.0.0.0',6767,'/',Null,'INFO','master','True'); -CREATE TABLE `table_scheduler` ( - `id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE, - `name` TEXT NOT NULL, - `frequency` TEXT NOT NULL -); CREATE TABLE "table_history" ( `id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE, `action` INTEGER NOT NULL,