Skip to content

Commit 203640b

Browse files
chore: fix parameter name mismatch in Migration88to89
Signed-off-by: Josh <josh.t.richards@gmail.com>
1 parent d85d42d commit 203640b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/src/main/java/com/nextcloud/client/database/migrations/Migration88to89.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ import com.owncloud.android.db.ProviderMeta.ProviderTableMeta
1414

1515
@Suppress("MagicNumber")
1616
val MIGRATION_88_89 = object : Migration(88, 89) {
17-
override fun migrate(database: SupportSQLiteDatabase) {
17+
override fun migrate(db: SupportSQLiteDatabase) {
1818
DatabaseMigrationUtil.addColumnIfNotExists(
19-
database,
19+
db,
2020
ProviderTableMeta.FILE_TABLE_NAME,
2121
ProviderTableMeta.FILE_UPLOADED,
2222
SQLiteColumnType.INTEGER_DEFAULT_NULL
2323
)
2424
DatabaseMigrationUtil.addColumnIfNotExists(
25-
database,
25+
db,
2626
ProviderTableMeta.CAPABILITIES_TABLE_NAME,
2727
ProviderTableMeta.CAPABILITIES_NOTES_FOLDER_PATH,
2828
SQLiteColumnType.TEXT_DEFAULT_NULL

0 commit comments

Comments
 (0)