Merge pull request #11659 from nextcloud/addMigration

Migration is needed, otherwise it drops database 😨
This commit is contained in:
Tobias Kaminsky 2023-05-25 15:14:02 +02:00 committed by GitHub
commit 8d36ea10e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,8 @@ import com.owncloud.android.db.ProviderMeta
version = ProviderMeta.DB_VERSION,
autoMigrations = [
AutoMigration(from = 65, to = 66),
AutoMigration(from = 66, to = 67)
AutoMigration(from = 66, to = 67),
AutoMigration(from = 68, to = 69)
],
exportSchema = true
)