I couldn\'t find any information how to annotate a SQL - \"DEFAULT\" value while looking into the @ColumnInfo docs for the new Android Persistence Library.
Does Room
You can set the default value using @ColumnInfo annotation-
@ColumnInfo
@ColumnInfo(defaultValue = "No name") public String name;
and
@ColumnInfo(defaultValue = "0") public int flag;
or for any kind of data types check the reference from here Google developer doc