I have noticed exportSchema keyword while creating Room Database in Database class
@Database(entities = [SleepNight::class], version = 1, exportSchema = false)
abstract class MyDB : RoomDatabase() {
}
i am not getting why exportSchema needs to be false or true ? How does it effects on DB?