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
Room hasn't any annotation for default value, but you can set default value in your entity like this:
@Entity(tableName = "MyTable") class MyClass { ... public String MyDefaultValuedCol = "defaultString"; public boolean MyDefaultFlagCol = true; }