Hi I am wondering if its possible to make Boolean properties non-null and have a default value via JDO @Column annotations, e.g.
@Column(allowsNull = "false", defaultValue = "true") Thus in the UI I have only true or false as options? At the moment the defaultValue seems to be ignored. Thanks
