aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Marshall <jmarshall@xbmc.org>2014-02-06 09:21:24 +1300
committerJonathan Marshall <jmarshall@xbmc.org>2014-02-06 09:27:34 +1300
commit696b2cf89e63249f5d23d2d6617a3c146ae6100b (patch)
treeea5ad0a43eab8b96b6548e6b6a31dd8a5c3b7740
parentef583de22e2d28f7fae2471350e9dc5c1c21e82a (diff)
[database] bump music and video database versions as on mysql they may have missing triggers or indicies
-rw-r--r--xbmc/music/MusicDatabase.cpp2
-rw-r--r--xbmc/video/VideoDatabase.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/music/MusicDatabase.cpp b/xbmc/music/MusicDatabase.cpp
index b398dfe322..0194cbf751 100644
--- a/xbmc/music/MusicDatabase.cpp
+++ b/xbmc/music/MusicDatabase.cpp
@@ -4003,7 +4003,7 @@ void CMusicDatabase::UpdateTables(int version)
int CMusicDatabase::GetSchemaVersion() const
{
- return 44;
+ return 45;
}
unsigned int CMusicDatabase::GetSongIDs(const Filter &filter, vector<pair<int,int> > &songIDs)
diff --git a/xbmc/video/VideoDatabase.cpp b/xbmc/video/VideoDatabase.cpp
index bfdefd59c7..bd765f5006 100644
--- a/xbmc/video/VideoDatabase.cpp
+++ b/xbmc/video/VideoDatabase.cpp
@@ -4450,7 +4450,7 @@ void CVideoDatabase::UpdateTables(int iVersion)
int CVideoDatabase::GetSchemaVersion() const
{
- return 77;
+ return 78;
}
bool CVideoDatabase::LookupByFolders(const CStdString &path, bool shows)