Fix SQLite update query

Change-Id: I54a5e2f29e1e171901e7087e27d132256460f0f5
This commit is contained in:
Jerry Xie 2013-12-10 16:46:45 -08:00
parent b14f1a45a8
commit 2bf9590ddd
1 changed files with 1 additions and 1 deletions

View File

@ -1347,7 +1347,7 @@ public final class DBHelper {
// Add the credentialKey column, and set it to -1 for all pre-existing hostAuths.
db.execSQL("alter table " + HostAuth.TABLE_NAME
+ " add " + HostAuthColumns.CREDENTIAL_KEY + " integer");
db.execSQL("update table " + HostAuth.TABLE_NAME + " set "
db.execSQL("update " + HostAuth.TABLE_NAME + " set "
+ HostAuthColumns.CREDENTIAL_KEY + "=-1");
}
}