Merge pull request #47 from fsateler/master

Pass DEFAULT on columns configured with autoincrement
This commit is contained in:
1602 2012-03-13 14:03:16 -07:00
commit 04e5ab460b
1 changed files with 18 additions and 2 deletions

View File

@ -109,7 +109,16 @@ function dateToPostgres(val) {
}
PG.prototype.toDatabase = function (prop, val) {
if (val === null) return 'NULL';
if (val === null) {
// Postgres complains with NULLs in not null columns
// If we have an autoincrement value, return DEFAULT instead
if( prop.autoIncrement ) {
return 'DEFAULT';
}
else {
return 'NULL';
}
}
if (val.constructor.name === 'Object') {
var operator = Object.keys(val)[0]
val = val[operator];
@ -119,7 +128,14 @@ PG.prototype.toDatabase = function (prop, val) {
}
if (prop.type.name === 'Number') return val;
if (prop.type.name === 'Date') {
if (!val) return 'NULL';
if (!val) {
if( prop.autoIncrement ) {
return 'DEFAULT';
}
else {
return 'NULL';
}
}
if (!val.toUTCString) {
val = new Date(val);
}