Skip to content

Commit 2e16a9f

Browse files
committed
force ded frozen on update; ver up 167
1 parent 97a51f9 commit 2e16a9f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
ext {
77
// App version
88
versionName = '3.4.2'
9-
versionCode = 166
9+
versionCode = 167
1010

1111
// SDK and tools
1212
compileSdkVersion = 34

core-db/src/main/java/jp/co/soramitsu/coredb/migrations/Migrations.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import androidx.sqlite.db.SupportSQLiteDatabase
66
val Migration_62_63 = object : Migration(62, 63) {
77
override fun migrate(db: SupportSQLiteDatabase) {
88
db.execSQL("ALTER TABLE assets ADD COLUMN `status` TEXT NULL")
9+
db.execSQL("UPDATE assets SET `status` = 'Frozen' where id == '8f79aa5a-9f31-442c-ac96-01ff80b105e0'")
910
}
1011
}
1112

0 commit comments

Comments
 (0)