blob: 647be5430ad62c3ef9cf3195bb95d2fa97cdfafd [file] [log] [blame]
package foo.bar
import androidx.room.migration.AutoMigrationSpec
import androidx.room.migration.Migration
import androidx.sqlite.db.SupportSQLiteDatabase
import javax.`annotation`.processing.Generated
import kotlin.Suppress
import kotlin.Unit
@Generated(value = ["androidx.room.RoomProcessor"])
@Suppress(names = ["UNCHECKED_CAST", "DEPRECATION", "REDUNDANT_PROJECTION"])
internal class MyDatabase_AutoMigration_1_2_Impl : Migration {
private val callback: AutoMigrationSpec
public constructor(callback: AutoMigrationSpec) : super(1, 2) {
this.callback = callback
}
public override fun migrate(db: SupportSQLiteDatabase): Unit {
db.execSQL("ALTER TABLE `Song` ADD COLUMN `artistId` INTEGER DEFAULT NULL")
callback.onPostMigrate(db)
}
}