Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve reading plan UI #2095

Draft
wants to merge 6 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove deprecated ReadingPlanDatabaseDefinition (was only needed for …
…db migration 5-6 which is very old now)
  • Loading branch information
timbze committed Oct 22, 2023
commit 0a1b2c3d48cd47b275128504e8e39f10504deed0

This file was deleted.

Original file line number Diff line number Diff line change
@@ -150,15 +150,7 @@ private val MIGRATION_53_54_booleanSettings = object : Migration(53, 54) {
}
}

private val MIGRATION_5_6 = object : Migration(5, 6) {
override fun doMigrate(db: SupportSQLiteDatabase) {
ReadingPlanDatabaseOperations.instance.onCreate(db)
ReadingPlanDatabaseOperations.instance.migratePrefsToDatabase(db)
}
}

val oldMigrations = arrayOf(
MIGRATION_5_6,
MIGRATION_37_38_MyNotes_To_Bookmarks,
MIGRATION_53_54_booleanSettings,
)