There was an error while loading. Please reload this page.
1 parent d85d42d commit 203640bCopy full SHA for 203640b
1 file changed
app/src/main/java/com/nextcloud/client/database/migrations/Migration88to89.kt
@@ -14,15 +14,15 @@ import com.owncloud.android.db.ProviderMeta.ProviderTableMeta
14
15
@Suppress("MagicNumber")
16
val MIGRATION_88_89 = object : Migration(88, 89) {
17
- override fun migrate(database: SupportSQLiteDatabase) {
+ override fun migrate(db: SupportSQLiteDatabase) {
18
DatabaseMigrationUtil.addColumnIfNotExists(
19
- database,
+ db,
20
ProviderTableMeta.FILE_TABLE_NAME,
21
ProviderTableMeta.FILE_UPLOADED,
22
SQLiteColumnType.INTEGER_DEFAULT_NULL
23
)
24
25
26
ProviderTableMeta.CAPABILITIES_TABLE_NAME,
27
ProviderTableMeta.CAPABILITIES_NOTES_FOLDER_PATH,
28
SQLiteColumnType.TEXT_DEFAULT_NULL
0 commit comments