Skip to content

Instantly share code, notes, and snippets.

@gokmenbayram
Created November 11, 2022 08:56
Show Gist options
  • Save gokmenbayram/6f9e1691b5d37f76e2577a10738c124a to your computer and use it in GitHub Desktop.
Save gokmenbayram/6f9e1691b5d37f76e2577a10738c124a to your computer and use it in GitHub Desktop.
AutomatedMigration
@Database(
- version = 2, // old version
+ version = 3, // upgraded version
entities = [ User.class ],
autoMigrations = [
AutoMigration (from = 1, to = 2),
+ AutoMigration (from = 2, to = 3)
]
)
abstract class UserDatabase : RoomDatabase { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment