What is the meaning of exportSchema = false or true in Room Database?

Viewed 1980

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?

1 Answers
Related