Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 8ca7ebb

Browse files
authored
Merge pull request #1606 from wordpress-mobile/fix/sqlVersionMigration
Correct version conflict from merge
2 parents 7b62fd9 + 5ae2d86 commit 8ca7ebb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fluxc/src/main/java/org/wordpress/android/fluxc/persistence/WellSqlConfig.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ open class WellSqlConfig : DefaultWellConfig {
2828
annotation class AddOn
2929

3030
override fun getDbVersion(): Int {
31-
return 109
31+
return 110
3232
}
3333

3434
override fun getDbName(): String {
@@ -1201,7 +1201,7 @@ open class WellSqlConfig : DefaultWellConfig {
12011201
"ATTRIBUTES TEXT NOT NULL," +
12021202
"_id INTEGER PRIMARY KEY AUTOINCREMENT)")
12031203
}
1204-
108 -> migrate(version) {
1204+
109 -> migrate(version) {
12051205
db.execSQL(
12061206
"CREATE TABLE EditorTheme(" +
12071207
"_id INTEGER PRIMARY KEY AUTOINCREMENT," +

0 commit comments

Comments
 (0)