Skip to content

Commit

Permalink
Increase db version to rebuild transaction tags
Browse files Browse the repository at this point in the history
  • Loading branch information
abdrasulov committed Feb 26, 2024
1 parent 82ce217 commit db1f414
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
package io.horizontalsystems.ethereumkit.core.storage

import android.content.Context
import androidx.room.*
import androidx.room.Database
import androidx.room.Room
import androidx.room.RoomDatabase
import androidx.room.TypeConverter
import androidx.room.TypeConverters
import io.horizontalsystems.ethereumkit.api.storage.RoomTypeConverters
import io.horizontalsystems.ethereumkit.models.InternalTransaction
import io.horizontalsystems.ethereumkit.models.Transaction
Expand All @@ -15,7 +19,7 @@ import io.horizontalsystems.ethereumkit.models.TransactionTag
TransactionTag::class,
TransactionSyncerState::class
],
version = 12,
version = 13,
exportSchema = false
)
@TypeConverters(RoomTypeConverters::class, TransactionDatabase.TypeConverters::class)
Expand Down

0 comments on commit db1f414

Please sign in to comment.