Skip to content

Commit

Permalink
fix ADD DEATH CAUSE COL migration
Browse files Browse the repository at this point in the history
  • Loading branch information
DebbieArita committed May 12, 2022
1 parent dceb36e commit 284a95a
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,10 @@ private static void upgradeToVersion6(SQLiteDatabase db) {
}

private static void upgradeToVersion7(SQLiteDatabase db) {
db.execSQL(RepositoryUtilsFlv.ADD_DEATH_CAUSE_COL_QUERY);
try {
db.execSQL(RepositoryUtilsFlv.ADD_DEATH_CAUSE_COL_QUERY);
} catch (Exception e) {
Timber.e(e);
}
}
}

0 comments on commit 284a95a

Please sign in to comment.