Remove dev hack in KeychainDatabase

This commit is contained in:
Dominik Schürmann 2014-04-17 17:57:16 +02:00
parent a67854ca6a
commit f0e3bb408c

View File

@ -188,11 +188,6 @@ public class KeychainDatabase extends SQLiteOpenHelper {
if (!db.isReadOnly()) {
// Enable foreign key constraints
db.execSQL("PRAGMA foreign_keys=ON;");
// TODO this is a dev hack, remove for release!
try {
db.execSQL("ALTER TABLE keys ADD COLUMN has_secret BOOLEAN");
} catch(Exception e) {
}
}
}