After modifying the sq file by renaming one of the tables and adding one more table I didn't find any place to specify that database schema or version has been changed and I want no migration - just recreate database. The documentation on official website does not contain any information about this.
Project compiles but when I run the app on both Android and iOS I get a runtime crash and in logs it says that added table does not exist.
I tried adding version in build.gradle.kts of shared module but I still get runtime crash:
sqldelight {
database("MyDatabase") {
packageName = "com.example.shared.cache"
version = 2 // added this line only
}
}
I don't want to delete and reinstall the app. Ideal solution would be something like fallbackToDestructiveMigration Room database has
I found this discussion about a destructive migration. Last comment suggests to handle that in platform specific drivers but it doesn't show how to do that.
So my questions are:
- How to change the database version?
- How to setup destructive migration?
I wish documentation was more detailed on various topics. It would make finding right information easier for developers like me who is not very experienced in Sqlite.
While waiting for a destructive migration, let’s follow the current migration docs.
The official docs it's quite well written.
This means that if you change your original
.sq
file (database version 1), then if you want to migrate the already created databases in devices to the new version (version 2) you must write a1.sqm
file in which you add all the difference between version 1 and version 2.Let's say your origial (first app release) db was created by
MyDb.sq
:This is said to be the version 1 of your db.
Now let's say you want to add a table and change the previous one, you have to change your
MyDb.sq
file accordingly for a newly database created in a new app fresh install, but you need also to add a1.sqm
(the number 1 is the db version to upgrade to the subsequent version — in this case 2) to migrate your existing original db in your current app installations.MyDb.sq
:1.sqm
:If you extract your original db from one device you can put it along with these two files and named it
1.db
. Or you canDoing that you can validate the migration with the gradle task
verifySqlDelightMigration
. This task gives you errors if you wrote a wrong migration. It will be successful for a good migration instead.