Artyom Danilin
Artyom Danilin

Reputation: 133

Android room migration for new table

I have an android app which is already use database with some tables in it. I also create a new table.

Do I need a migration for that? Or Room can handle it in automatic way?

Upvotes: 1

Views: 1744

Answers (1)

Vít Kapitola
Vít Kapitola

Reputation: 549

Yes you need a migration for that. You can migrate manually or from Room version 2.4.0-alpha01 you can use automated migrations.

Upvotes: 2

Related Questions