How delete multiple columns if I can't repeat the ...
# android
c
How delete multiple columns if I can't repeat the annotation with Auto Migration? Note: Room Auto Migration is in Alpha - 2.4.0-alpha04 I've deleted two columns in two different tables. And I tried repeat the 
@DeleteColumn
 annotation, like so
Copy code
@DeleteColumn(tableName = "User", columnName = "phone")
    @DeleteColumn(tableName = "Product", columnName = "description")
    @DeleteTable(tableName = "Category")
    class TestRoomAutoMigration: AutoMigrationSpec {   }
but I get this error
Copy code
Repeatable annotations with non-SOURCE retention are not yet supported
Also asked here - SO link
K 2
😶 1