Note: Room Auto Migration is in Beta - 2.4.0-beta02
I've deleted two columns in two different tables. And I tried repeat the @DeleteColumn annotation, like so
@DeleteColumn(tableName = "User", columnName = "phone")
@DeleteColumn(tableName = "Product", columnName = "description")
@DeleteTable(tableName = "Category")
class TestRoomAutoMigration: AutoMigrationSpec { }
but I get this error
Repeatable annotations with non-SOURCE retention are not yet supported
Questions
- How delete/rename multiple columns if I can't repeat the annotation with Auto Migration