Skip to content

Commit

Permalink
Upgrade SQLite version
Browse files Browse the repository at this point in the history
Fix sentry PRETIXDROID-E
  • Loading branch information
raphaelm committed Feb 20, 2019
1 parent a769e72 commit 2a86aa5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public void onCreate() {
public BlockingEntityStore<Persistable> getData() {
if (dataStore == null) {
// override onUpgrade to handle migrating to a new version
DatabaseSource source = new DatabaseSource(this, Models.DEFAULT, 5);
DatabaseSource source = new DatabaseSource(this, Models.DEFAULT, 6);
Configuration configuration = source.getConfiguration();
dataStore = new EntityDataStore<Persistable>(configuration);
}
Expand Down

0 comments on commit 2a86aa5

Please sign in to comment.