Created
November 11, 2022 08:56
-
-
Save gokmenbayram/6f9e1691b5d37f76e2577a10738c124a to your computer and use it in GitHub Desktop.
AutomatedMigration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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