We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a51f9 commit 2e16a9fCopy full SHA for 2e16a9f
build.gradle
@@ -6,7 +6,7 @@ buildscript {
6
ext {
7
// App version
8
versionName = '3.4.2'
9
- versionCode = 166
+ versionCode = 167
10
11
// SDK and tools
12
compileSdkVersion = 34
core-db/src/main/java/jp/co/soramitsu/coredb/migrations/Migrations.kt
@@ -6,6 +6,7 @@ import androidx.sqlite.db.SupportSQLiteDatabase
val Migration_62_63 = object : Migration(62, 63) {
override fun migrate(db: SupportSQLiteDatabase) {
db.execSQL("ALTER TABLE assets ADD COLUMN `status` TEXT NULL")
+ db.execSQL("UPDATE assets SET `status` = 'Frozen' where id == '8f79aa5a-9f31-442c-ac96-01ff80b105e0'")
}
0 commit comments