diff --git a/History.md b/History.md index f0523815..8d9165ec 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,7 @@ +# 0.9.7 + +* Adding `patio.parseInt8` and `patio.defaultPrimaryKeyType` options. + # 0.9.6 * Lowering comb-proxy dependency. diff --git a/docs/History.html b/docs/History.html index 768ab5da..1abf48f0 100644 --- a/docs/History.html +++ b/docs/History.html @@ -362,6 +362,14 @@ +
patio.parseInt8
and patio.defaultPrimaryKeyType
options.id
key from being created in a JsonArray
null
Returns the default database. This is the first database created using patio#connect.
+Set the default primary key type when not specified for all databases by default. By default, +patio uses "integer".
Set the method to call on identifiers going into the database. This affects how identifiers are sent to the database. So if you use camelCased and the db identifiers are all underscored use camelize. The method can include
@@ -722,6 +726,8 @@Sets whether bigint types should be parsed to a number. An error will be thrown if set and the number is +set and the number is greater than 2^53 or less than -2^53.
Set whether to quote identifiers for all databases by default. By default, patio quotes identifiers in all SQL strings.
Sets the whether or not to underscore identifiers coming from the database and to camelize diff --git a/docs/patio_AlterTableGenerator.html b/docs/patio_AlterTableGenerator.html index 2b2fefa7..49653d43 100644 --- a/docs/patio_AlterTableGenerator.html +++ b/docs/patio_AlterTableGenerator.html @@ -971,7 +971,7 @@
The default options for the connection pool.
returns an empty adapter specific patio.Dataset that can be used to query the patio.Database with.
+
+"integer"
+
Default type for primary/foreign keys when a type is not specified.
+
+"integer"
+
Default type for primary/foreign keys when a type is not specified.
function (){
return null;
diff --git a/package.json b/package.json
index 5d103a56..16373f5a 100755
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "patio",
"description": "Patio query engine and ORM",
- "version": "0.9.6",
+ "version": "0.9.7",
"keywords": [
"ORM",
"object relation mapper",