Fix duplicated rich_workspace in dev version

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2020-01-21 09:17:34 +01:00
parent 066a1a3424
commit 491de101ac
No known key found for this signature in database
GPG key ID: 0E00D4D47D0C5AF7

View file

@ -2089,9 +2089,11 @@ public class FileContentProvider extends ContentProvider {
Log_OC.i(SQL, "Entering in the #53 add rich workspace to file table");
db.beginTransaction();
try {
db.execSQL(ALTER_TABLE + ProviderTableMeta.FILE_TABLE_NAME +
ADD_COLUMN + ProviderTableMeta.FILE_RICH_WORKSPACE + " TEXT ");
if (!checkIfColumnExists(db, ProviderTableMeta.FILE_TABLE_NAME,
ProviderTableMeta.FILE_RICH_WORKSPACE)) {
db.execSQL(ALTER_TABLE + ProviderTableMeta.FILE_TABLE_NAME +
ADD_COLUMN + ProviderTableMeta.FILE_RICH_WORKSPACE + " TEXT ");
}
upgraded = true;
db.setTransactionSuccessful();
} finally {