Normalize volume (#53)

This commit is contained in:
vfsfitvnm
2022-06-21 19:37:01 +02:00
parent 0ab184cd85
commit 8a94c7e714
10 changed files with 399 additions and 28 deletions

View File

@@ -129,12 +129,13 @@ interface Database {
views = [
SortedSongInPlaylist::class
],
version = 4,
version = 5,
exportSchema = true,
autoMigrations = [
AutoMigration(from = 1, to = 2),
AutoMigration(from = 2, to = 3),
AutoMigration(from = 3, to = 4, spec = DatabaseInitializer.From3To4Migration::class),
AutoMigration(from = 4, to = 5),
],
)
abstract class DatabaseInitializer protected constructor() : RoomDatabase() {