Warren de León Ofalla

Results 2 comments of Warren de León Ofalla

@Table(name = "Measurements") public class Measurement extends Model { ``` @Column private Long remoteId; @Column private int urinatedVolume; @Column private int voidedVolume; @Column private Date time; @Column(onUpdate = Column.ForeignKeyAction.CASCADE, onDelete...

My workoround was to set all Measurements with remoteId -1L and then I make an ActiveAndroid select for those Measurements with remoteId -1. I couldn't get null values with ActiveAndroid.