1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 19:52:17 -05:00

Database version bump to clear bogus cached attachments

This commit is contained in:
Jesse Vincent 2010-08-29 16:58:04 +00:00
parent 6031862bad
commit 89dcc3646b

View File

@ -44,7 +44,7 @@ public class LocalStore extends Store implements Serializable
*/ */
private static final String[] EMPTY_STRING_ARRAY = new String[0]; private static final String[] EMPTY_STRING_ARRAY = new String[0];
private static final int DB_VERSION = 37; private static final int DB_VERSION = 38;
private static final Flag[] PERMANENT_FLAGS = { Flag.DELETED, Flag.X_DESTROYED, Flag.SEEN, Flag.FLAGGED }; private static final Flag[] PERMANENT_FLAGS = { Flag.DELETED, Flag.X_DESTROYED, Flag.SEEN, Flag.FLAGGED };
private String mPath; private String mPath;
@ -270,6 +270,8 @@ public class LocalStore extends Store implements Serializable
} }
// Database version 38 is solely to prune cached attachments now that we clear them better
} }
} }