2014-09-16
- Added FieldType REAL - Fixes #12
- Fixed pluralization of table names that end on vowel + y - Fixes #10
Note: This change might be incompatible if you previously relied on the wrong pluralization. E.g. if you have defined a schema class called
Journey
, SimpleProvider has created a table calledjourneies
for you. As of 1.1.0 the new pluralization will bejourneys
. This could possibly break a schema upgrade in the future, when SimpleProvider looks for a table calledjourneys
which doesn't exist. If this affects your code, you have to make sure to manually set that name again via thevalue
-property in the@Table
-Annotation
2014-07-10
- More ways to extend the default behaviour of
AbstractProvider
in derived classes: - Added
onUpgrade()
for custom schema updates. - Removed
final
modifier fromonCreate()
.
2014-05-16
Initial release.