I am trying to migrate from existing Loaders/Content Providers to Room.
I need some columns to have default values. Adding defaults in Kotlin, like var columnName: Int = 0 but when I check RoomDatabase_Impl it ignores the Kotlin Defaults in schema creation. How to introduce DEFAULT values for columns with Room?