mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 02:23:38 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
6e6aada90b
2 changed files with 11 additions and 4 deletions
|
@ -46,6 +46,11 @@
|
||||||
* Add scene qualities WEB.h264 to SDTV, 720p.WEB.h264 to WEB DL 720p, and 1080p.WEB.h264 to WEB DL 1080p
|
* Add scene qualities WEB.h264 to SDTV, 720p.WEB.h264 to WEB DL 720p, and 1080p.WEB.h264 to WEB DL 1080p
|
||||||
|
|
||||||
|
|
||||||
|
### 0.11.10 (2016-03-17 19:00:00 UTC)
|
||||||
|
|
||||||
|
* Fix dbs that should not have been imported to work
|
||||||
|
|
||||||
|
|
||||||
### 0.11.9 (2016-03-17 12:30:00 UTC)
|
### 0.11.9 (2016-03-17 12:30:00 UTC)
|
||||||
|
|
||||||
* Fix for import of very rare db structure
|
* Fix for import of very rare db structure
|
||||||
|
|
|
@ -1042,8 +1042,9 @@ class AddTvShowOverview(db.SchemaUpgrade):
|
||||||
def execute(self):
|
def execute(self):
|
||||||
db.backup_database('sickbeard.db', self.checkDBVersion())
|
db.backup_database('sickbeard.db', self.checkDBVersion())
|
||||||
|
|
||||||
logger.log(u'Adding column overview to tv_shows')
|
if not self.hasColumn('tv_shows', 'overview'):
|
||||||
self.addColumn('tv_shows', 'overview', 'TEXT', '')
|
logger.log(u'Adding column overview to tv_shows')
|
||||||
|
self.addColumn('tv_shows', 'overview', 'TEXT', '')
|
||||||
|
|
||||||
self.setDBVersion(20002)
|
self.setDBVersion(20002)
|
||||||
return self.checkDBVersion()
|
return self.checkDBVersion()
|
||||||
|
@ -1054,8 +1055,9 @@ class AddTvShowTags(db.SchemaUpgrade):
|
||||||
def execute(self):
|
def execute(self):
|
||||||
db.backup_database('sickbeard.db', self.checkDBVersion())
|
db.backup_database('sickbeard.db', self.checkDBVersion())
|
||||||
|
|
||||||
logger.log(u'Adding tag to tv_shows')
|
if not self.hasColumn('tv_shows', 'tag'):
|
||||||
self.addColumn('tv_shows', 'tag', 'TEXT', 'Show List')
|
logger.log(u'Adding tag to tv_shows')
|
||||||
|
self.addColumn('tv_shows', 'tag', 'TEXT', 'Show List')
|
||||||
|
|
||||||
self.setDBVersion(20003)
|
self.setDBVersion(20003)
|
||||||
return self.checkDBVersion()
|
return self.checkDBVersion()
|
||||||
|
|
Loading…
Reference in a new issue