|
@@ -939,14 +939,17 @@ public class FileContentProvider extends ContentProvider {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ if (!upgraded) {
|
|
|
+ Log_OC.i(SQL, String.format(Locale.ENGLISH, UPGRADE_VERSION_MSG, oldVersion, newVersion));
|
|
|
+ }
|
|
|
+
|
|
|
if (oldVersion < 18 && newVersion >= 18) {
|
|
|
- Log_OC.i(SQL, "Entering in the #18 ADD in onUpgrade");
|
|
|
+ Log_OC.i(SQL, "Entering in the #18 Adding external link column to capabilities");
|
|
|
db.beginTransaction();
|
|
|
try {
|
|
|
- // add type column default being IMAGE(0)
|
|
|
- db.execSQL(ALTER_TABLE + ProviderTableMeta.SYNCED_FOLDERS_TABLE_NAME +
|
|
|
- ADD_COLUMN + ProviderTableMeta.SYNCED_FOLDER_TYPE +
|
|
|
- " INTEGER " + " DEFAULT 0");
|
|
|
+ db.execSQL(ALTER_TABLE + ProviderTableMeta.CAPABILITIES_TABLE_NAME +
|
|
|
+ ADD_COLUMN + ProviderTableMeta.CAPABILITIES_EXTERNAL_LINKS +
|
|
|
+ " INTEGER " + " DEFAULT -1");
|
|
|
|
|
|
upgraded = true;
|
|
|
db.setTransactionSuccessful();
|
|
@@ -959,14 +962,11 @@ public class FileContentProvider extends ContentProvider {
|
|
|
Log_OC.i(SQL, String.format(Locale.ENGLISH, UPGRADE_VERSION_MSG, oldVersion, newVersion));
|
|
|
}
|
|
|
|
|
|
- if (oldVersion < 18 && newVersion >= 18) {
|
|
|
- Log_OC.i(SQL, "Entering in the #18 Adding external link column to capabilities");
|
|
|
+ if (oldVersion < 19 && newVersion >= 19) {
|
|
|
+ Log_OC.i(SQL, "Entering in the #19 Adding external link column to capabilities");
|
|
|
db.beginTransaction();
|
|
|
try {
|
|
|
- db.execSQL(ALTER_TABLE + ProviderTableMeta.CAPABILITIES_TABLE_NAME +
|
|
|
- ADD_COLUMN + ProviderTableMeta.CAPABILITIES_EXTERNAL_LINKS +
|
|
|
- " INTEGER " + " DEFAULT -1");
|
|
|
-
|
|
|
+ createExternalLinksTable(db);
|
|
|
upgraded = true;
|
|
|
db.setTransactionSuccessful();
|
|
|
} finally {
|
|
@@ -978,11 +978,15 @@ public class FileContentProvider extends ContentProvider {
|
|
|
Log_OC.i(SQL, String.format(Locale.ENGLISH, UPGRADE_VERSION_MSG, oldVersion, newVersion));
|
|
|
}
|
|
|
|
|
|
- if (oldVersion < 19 && newVersion >= 19) {
|
|
|
- Log_OC.i(SQL, "Entering in the #19 Adding external link column to capabilities");
|
|
|
+ if (oldVersion < 20 && newVersion >= 20) {
|
|
|
+ Log_OC.i(SQL, "Entering in the #20 ADD in onUpgrade");
|
|
|
db.beginTransaction();
|
|
|
try {
|
|
|
- createExternalLinksTable(db);
|
|
|
+ // add type column default being IMAGE(0)
|
|
|
+ db.execSQL(ALTER_TABLE + ProviderTableMeta.SYNCED_FOLDERS_TABLE_NAME +
|
|
|
+ ADD_COLUMN + ProviderTableMeta.SYNCED_FOLDER_TYPE +
|
|
|
+ " INTEGER " + " DEFAULT 0");
|
|
|
+
|
|
|
upgraded = true;
|
|
|
db.setTransactionSuccessful();
|
|
|
} finally {
|