]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/utils/MobileLedgerDatabase.java
color the swipe progress spinner in the accounts summary activity too
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / MobileLedgerDatabase.java
index cae65b0f2a517ebfb38f75fc91ec9f76644c54bb..7efc0ae8de262f13dfd4ee3783439585e9314f51 100644 (file)
@@ -35,7 +35,7 @@ public class MobileLedgerDatabase extends SQLiteOpenHelper implements AutoClosea
     public static final String DB_NAME = "mobile-ledger.db";
     public static final String ACCOUNTS_TABLE = "accounts";
     public static final String DESCRIPTION_HISTORY_TABLE = "description_history";
-    public static final int LATEST_REVISION = 7;
+    public static final int LATEST_REVISION = 8;
 
     private final Context mContext;
 
@@ -95,6 +95,7 @@ public class MobileLedgerDatabase extends SQLiteOpenHelper implements AutoClosea
             return Integer.parseInt(s);
         }
         catch (Exception e) {
+            Log.d("db", "returning default int value of "+name, e);
             return default_value;
         }
     }