What is the practical difficulty with Room schema changes?
- A Migrations must be written, and destructive migration wipes user data
- B Room does not support schema changes
- C Migrations run automatically and safely
- D Schemas cannot include relations
Answer
Migrations must be written, and destructive migration wipes user data
fallbackToDestructiveMigration is acceptable in development but never in production, where it silently deletes everything.





