summaryrefslogtreecommitdiffstats
path: root/emailcommon
diff options
context:
space:
mode:
authorRicardo Cerqueira <ricardo@cyngn.com>2014-11-10 02:45:50 +0000
committerMichael Bestas <mikeioannina@gmail.com>2016-12-30 20:13:31 +0200
commitfd21ebe3ca80ae7278c7706143d24d96baab7491 (patch)
treed7c7b054f78f77bdf9c3ea7f8c709d5886cc70cd /emailcommon
parent9de8ece97e97b279ecc6dd1a6939c7b63904b1be (diff)
downloadandroid_packages_apps_Email-fd21ebe3ca80ae7278c7706143d24d96baab7491.tar.gz
android_packages_apps_Email-fd21ebe3ca80ae7278c7706143d24d96baab7491.tar.bz2
android_packages_apps_Email-fd21ebe3ca80ae7278c7706143d24d96baab7491.zip
DBHelper: Support upgrades from CM11
Add the new columns when coming from v126, add the old ones when coming from any other value (or creating) so that they're there when the feature gets reintroduced Change-Id: I48ec042b30afbcefd43bdad0042147b6b0d2249f
Diffstat (limited to 'emailcommon')
-rwxr-xr-xemailcommon/src/com/android/emailcommon/provider/EmailContent.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/emailcommon/src/com/android/emailcommon/provider/EmailContent.java b/emailcommon/src/com/android/emailcommon/provider/EmailContent.java
index 3c6060e30..d4538172f 100755
--- a/emailcommon/src/com/android/emailcommon/provider/EmailContent.java
+++ b/emailcommon/src/com/android/emailcommon/provider/EmailContent.java
@@ -1789,6 +1789,8 @@ public abstract class EmailContent {
public static final String SET_SYNC_SIZE_ENABLED = "setSyncSizeEnabled";
// The sync size for each message of this account.
public static final String SYNC_SIZE = "syncSize";
+ // Automatically fetch pop3 attachments
+ public static final String AUTO_FETCH_ATTACHMENTS = "autoFetchAttachments";
}
public interface QuickResponseColumns extends BaseColumns {