Skip to content

Commit 0c6fe06

Browse files
Merge pull request #14952 from nextcloud/bugfix/add-missing-db-migration-to-87
BugFix - Add missing db migration to 87
2 parents 3e69ec2 + 282236f commit 0c6fe06

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/main/java/com/nextcloud/client/database/NextcloudDatabase.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ import com.owncloud.android.db.ProviderMeta
6969
AutoMigration(from = 82, to = 83),
7070
AutoMigration(from = 83, to = 84),
7171
AutoMigration(from = 84, to = 85, spec = DatabaseMigrationUtil.DeleteColumnSpec::class),
72-
AutoMigration(from = 85, to = 86, spec = DatabaseMigrationUtil.ResetCapabilitiesPostMigration::class)
72+
AutoMigration(from = 85, to = 86, spec = DatabaseMigrationUtil.ResetCapabilitiesPostMigration::class),
73+
AutoMigration(from = 86, to = 87)
7374
],
7475
exportSchema = true
7576
)

0 commit comments

Comments
 (0)