mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 15:15:51 +03:00
Merge pull request #5267 from nextcloud/devDBupdate
Fix duplicated rich_workspace in dev version
This commit is contained in:
commit
fc8a5dd43e
1 changed files with 5 additions and 3 deletions
|
@ -2089,9 +2089,11 @@ public class FileContentProvider extends ContentProvider {
|
||||||
Log_OC.i(SQL, "Entering in the #53 add rich workspace to file table");
|
Log_OC.i(SQL, "Entering in the #53 add rich workspace to file table");
|
||||||
db.beginTransaction();
|
db.beginTransaction();
|
||||||
try {
|
try {
|
||||||
db.execSQL(ALTER_TABLE + ProviderTableMeta.FILE_TABLE_NAME +
|
if (!checkIfColumnExists(db, ProviderTableMeta.FILE_TABLE_NAME,
|
||||||
ADD_COLUMN + ProviderTableMeta.FILE_RICH_WORKSPACE + " TEXT ");
|
ProviderTableMeta.FILE_RICH_WORKSPACE)) {
|
||||||
|
db.execSQL(ALTER_TABLE + ProviderTableMeta.FILE_TABLE_NAME +
|
||||||
|
ADD_COLUMN + ProviderTableMeta.FILE_RICH_WORKSPACE + " TEXT ");
|
||||||
|
}
|
||||||
upgraded = true;
|
upgraded = true;
|
||||||
db.setTransactionSuccessful();
|
db.setTransactionSuccessful();
|
||||||
} finally {
|
} finally {
|
||||||
|
|
Loading…
Reference in a new issue