Skip to content

Instantly share code, notes, and snippets.

@gokmenbayram
Last active November 11, 2022 08:54
Show Gist options
  • Save gokmenbayram/7d2524df4d3bdf3e10f56f1c006486a1 to your computer and use it in GitHub Desktop.
Save gokmenbayram/7d2524df4d3bdf3e10f56f1c006486a1 to your computer and use it in GitHub Desktop.
@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