music: bump cache db version

Fixed several issues regarding music loading between 3.0.0 and 3.1.0,
should update the cache so that I don't get stale complaints.
This commit is contained in:
Alexander Capehart 2023-01-18 16:49:26 -07:00
parent 0c69a35e80
commit a5971cbccd
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -442,7 +442,7 @@ private class CacheDatabase(context: Context) :
companion object {
private const val DB_NAME = "auxio_music_cache.db"
private const val DB_VERSION = 1
private const val DB_VERSION = 2
private const val TABLE_RAW_SONGS = "raw_songs"
@Volatile private var INSTANCE: CacheDatabase? = null