Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13a3c0ff authored by Sayantan Roychowdhury's avatar Sayantan Roychowdhury
Browse files

Merge branch '2355-fix_db_migration' into 'main'

fix: updated schema version of DB

See merge request !471
parents e076313e 76440392
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ import foundation.e.apps.data.database.AppDatabase
import foundation.e.apps.data.install.AppInstallDAO
import foundation.e.apps.data.install.models.AppInstall

@Database(entities = [AppInstall::class], version = 4, exportSchema = false)
@Database(entities = [AppInstall::class], version = 5, exportSchema = false)
@TypeConverters(AppInstallConverter::class)
abstract class AppInstallDatabase : RoomDatabase() {
    abstract fun fusedDownloadDao(): AppInstallDAO