diff options
author | James Moger <james.moger@gmail.com> | 2011-08-09 13:56:44 -0400 |
---|---|---|
committer | James Moger <james.moger@gmail.com> | 2011-08-09 13:56:44 -0400 |
commit | 01ec38ed904bd24c9075edfc12c2b41c1e13d249 (patch) | |
tree | 0d2ed8b753a4bc8665703463a114750d013fbf06 /docs/05_releases.mkd | |
parent | 1a2339a9f1f96ddca64ab392dd7f9e1621e6c201 (diff) | |
download | iciql-01ec38ed904bd24c9075edfc12c2b41c1e13d249.tar.gz iciql-01ec38ed904bd24c9075edfc12c2b41c1e13d249.zip |
All columns are assumed NULLABLE. IQColumn.allowNull->IQColumn.nullable
Diffstat (limited to 'docs/05_releases.mkd')
-rw-r--r-- | docs/05_releases.mkd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/05_releases.mkd b/docs/05_releases.mkd index 8d1295b..e889f2f 100644 --- a/docs/05_releases.mkd +++ b/docs/05_releases.mkd @@ -7,6 +7,8 @@ **%VERSION%** ([zip](http://code.google.com/p/iciql/downloads/detail?name=%ZIP%)|[jar](http://code.google.com/p/iciql/downloads/detail?name=%JAR%)) *released %BUILDDATE%*
- api change release (API v4)
+- @IQColumn(allowNull=true) -> @IQColumn(nullable=true)
+- All columns are assumed NULLABLE unless explicitly set *@IQColumn(nullable = false)*
- allow using objects to assign default values<br/>
%BEGINCODE%
// CREATE TABLE ... myDate DATETIME DEFAULT '2000-02-01 00:00:00'
|