Skip to content

Commit

Permalink
Merge pull request #1344 from wordpress-mobile/fix-migration
Browse files Browse the repository at this point in the history
Fix migration issue
  • Loading branch information
shiki authored Aug 12, 2019
2 parents bfcdc2e + 5aa7962 commit 084b303
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ public void onUpgrade(SQLiteDatabase db, WellTableManager helper, int oldVersion
oldVersion++;
case 79:
AppLog.d(T.DB, "Migrating to version " + (oldVersion + 1));
db.execSQL("alter table PostModel add CHANGES_CONFIRMED_CONTENT_HASHCODE TEXT;");
db.execSQL("alter table PostModel add CHANGES_CONFIRMED_CONTENT_HASHCODE INTEGER;");
oldVersion++;
case 80:
AppLog.d(T.DB, "Migrating to version " + (oldVersion + 1));
Expand Down

0 comments on commit 084b303

Please sign in to comment.