Last active
November 11, 2022 08:54
-
-
Save gokmenbayram/7d2524df4d3bdf3e10f56f1c006486a1 to your computer and use it in GitHub Desktop.
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 = 1, // old version num. | |
+ version = 2, // upgraded version num. | |
entities = [ User.class ], | |
+ autoMigrations = [ | |
+ AutoMigration (from = 1, to = 2) | |
+ ] | |
) | |
abstract class UserDatabase : RoomDatabase { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment