Hello, is there an Annotation for adding a column ...
# room
g
Hello, is there an Annotation for adding a column like there's one for renaming one, aka
@RenameColumn
?
m
No there isn't
AutoMigration should be enough when adding a new column
g
Interesting!
m
You might have to annotate your column with @ColumnInfo(defaultValue = "")
depending to the data type of your column
g
Thanks I'll check this soon enough 👍