music: bump cache version

Accidentally bumped it to version code 35, when this will be version
code 36.
This commit is contained in:
Alexander Capehart 2023-11-12 10:18:03 -07:00
parent df7ec27d1c
commit 0016c77836
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -32,7 +32,7 @@ import org.oxycblt.auxio.music.info.Date
import org.oxycblt.auxio.music.metadata.correctWhitespace
import org.oxycblt.auxio.music.metadata.splitEscaped
@Database(entities = [CachedSong::class], version = 35, exportSchema = false)
@Database(entities = [CachedSong::class], version = 36, exportSchema = false)
abstract class CacheDatabase : RoomDatabase() {
abstract fun cachedSongsDao(): CachedSongsDao
}