Room database migration if only new table is added
Sorry, Room doesn't support auto-creation of tables without data loss.
It is mandatory to write the migration. Otherwise, it'll erase all the data and create the new table structure.
Room does NOT have a good Migration System, at least not until 2.1.0-alpha03
.
So, until we have better Migration System, there are some workarounds to have easy Migrations in the Room.
As there is no such method as @Database(createNewTables = true)
or MigrationSystem.createTable(User::class)
, which there should be one or other, the only possible way is running
CREATE TABLE IF NOT EXISTS `User` (`id` INTEGER, PRIMARY KEY(`id`))
inside your migrate
method.
val MIGRATION_1_2 = object : Migration(1, 2){
override fun migrate(database: SupportSQLiteDatabase) {
database.execSQL("CREATE TABLE IF NOT EXISTS `User` (`id` INTEGER, PRIMARY KEY(`id`))")
}
}
In order to get above SQL script, you have 4 ways
1. Write by yourself
Basically, you have to write the above script that will match the script that Room generates. This way is possible, not feasible. (Consider you have 50 fields)
2. Export Schema
If you include exportSchema = true
inside your @Database
annotation, Room will generate database schema within /schemas of your project folder. The usage is
@Database(entities = [User::class], version = 2, exportSchema = true)
abstract class AppDatabase : RoomDatabase {
//...
}
Make sure that you have included below lines in build.grade
of your app module
kapt {
arguments {
arg("room.schemaLocation", "$projectDir/schemas".toString())
}
}
When you run or build the project you will get a JSON file 2.json
, which has all the queries within your Room database.
"formatVersion": 1,
"database": {
"version": 2,
"identityHash": "325bd539353db508c5248423a1c88c03",
"entities": [
{
"tableName": "User",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
So, you can include the above createSql
within you migrate
method.
3. Get query from AppDatabase_Impl
If you don't want to export schema you can still get the query by running or building the project which will generate AppDatabase_Impl.java
file. and within the specified file you can have.
@Override
public void createAllTables(SupportSQLiteDatabase _db) {
_db.execSQL("CREATE TABLE IF NOT EXISTS `User` (`id` INTEGER, PRIMARY KEY(`id`))");
Within createAllTables
method, there will be the create scripts of all the entities. You can get it and include in within you migrate
method.
4. Annotation Processing.
As you might guess, Room generates all of the above mentioned schema
, and AppDatabase_Impl
files within compilation time and with Annotation Processing which you add with
kapt "androidx.room:room-compiler:$room_version"
That means you can also do the same and make your own annotation processing library that generates all the necessary create queries for you.
The idea is to make an annotation processing library for Room annotations of @Entity
and @Database
. Take a class that is annotated with @Entity
for example. These are the steps you will have to follow
- Make a new
StringBuilder
and append "CREATE TABLE IF NOT EXISTS " - Get the table name either from
class.simplename
or bytableName
field of@Entity
. Add it to yourStringBuilder
- Then for each field of your class create columns of SQL. Take the name, type, nullability of the field either by the field itself or by
@ColumnInfo
annotation. For every field, you have to addid INTEGER NOT NULL
style of a column to yourStringBuilder
. - Add primary keys by
@PrimaryKey
- Add
ForeignKey
andIndices
if exists. - After finishing convert it to string and save it in some new class that you want to use. For example, save it like below
public final class UserSqlUtils {
public String createTable = "CREATE TABLE IF NOT EXISTS User (id INTEGER, PRIMARY KEY(id))";
}
Then, you can use it as
val MIGRATION_1_2 = object : Migration(1, 2){
override fun migrate(database: SupportSQLiteDatabase) {
database.execSQL(UserSqlUtils().createTable)
}
}
I made such a library for myself which you can check out, and even use it in your project. Note that the library that I made is not full and it just fulfills my requirements for table creation.
RoomExtension for better Migration
Application that uses RoomExtension
Hope it was useful.
UPDATE
By the time of writing this answer, room version was 2.1.0-alpha03
and when I emailed developers I got a response of
It is expected to have better Migration System in
2.2.0
Unfortunately, we still lack better Migration System.