Skip to content

Commit

Permalink
fix: add semicolon and close parenthesis on SQLiteOpenHelper.java file (
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonimaike authored Feb 28, 2024
1 parent 1ad12f6 commit b0ca6b4
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 b0ca6b4

Please sign in to comment.