summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/01_model_classes.mkd5
-rw-r--r--docs/05_releases.mkd2
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/01_model_classes.mkd b/docs/01_model_classes.mkd
index 274cb92..bdddd80 100644
--- a/docs/01_model_classes.mkd
+++ b/docs/01_model_classes.mkd
@@ -8,8 +8,9 @@ Alternatively, model classes can be automatically generated by iciql using the m
### Configuration Requirements and Limitations
1. Your model class **must** provide a public default constructor.
-2. Only the specified types are supported. Other types such as arrays and custom types are not supported.
-3. Triggers, views, and other advanced database features are not supported.
+2. All columns are assumed NULLABLE unless explicitly set *@IQColumn(nullable = false)*.
+3. Only the specified types are supported. Other types such as arrays and custom types are not supported.
+4. Triggers, views, and other advanced database features are not supported.
### Fully Supported Data Types
The following data types can be used for all iciql expressions.
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'