Skip to content

Commit

Permalink
Test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Mar 2, 2024
1 parent 6b726d5 commit b402200
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
alterSql.add("ALTER TABLE " + LocationEntry.TABLE_NAME +
" ADD COLUMN " + LocationEntry.COLUMN_NAME_HAS_VERTICAL_ACCURACY + INTEGER_TYPE);
alterSql.add("UPDATE " + LocationEntry.TABLE_NAME +
" SET " + LocationEntry.COLUMN_NAME_VERTICAL_ACCURACY + "= -1," +
LocationEntry.COLUMN_NAME_HAS_VERTICAL_ACCURACY + "= 0");
" SET " + LocationEntry.COLUMN_NAME_VERTICAL_ACCURACY + "= -1,"
LocationEntry.COLUMN_NAME_HAS_VERTICAL_ACCURACY + "= 0"

break; // DO NOT FORGET TO MOVE DOWN BREAK ON DB UPGRADE!!!
default:
Expand Down

0 comments on commit b402200

Please sign in to comment.