mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 10:25:35 +03:00
Fix crash in Realm migration
This commit is contained in:
parent
b31dfcfe4f
commit
db0a958708
1 changed files with 2 additions and 0 deletions
|
@ -35,5 +35,7 @@ internal object GlobalRealmMigration : RealmMigration {
|
|||
private fun migrateTo1(realm: DynamicRealm) {
|
||||
realm.schema.create("KnownServerUrlEntity")
|
||||
.addField(KnownServerUrlEntityFields.URL, String::class.java)
|
||||
.addPrimaryKey(KnownServerUrlEntityFields.URL)
|
||||
.setRequired(KnownServerUrlEntityFields.URL, true)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue