Merge branch 'master' of github.com:1602/jugglingdb
This commit is contained in:
commit
66319b2c79
|
@ -109,7 +109,16 @@ function dateToPostgres(val) {
|
||||||
}
|
}
|
||||||
|
|
||||||
PG.prototype.toDatabase = function (prop, 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') {
|
if (val.constructor.name === 'Object') {
|
||||||
var operator = Object.keys(val)[0]
|
var operator = Object.keys(val)[0]
|
||||||
val = val[operator];
|
val = val[operator];
|
||||||
|
@ -119,7 +128,14 @@ PG.prototype.toDatabase = function (prop, val) {
|
||||||
}
|
}
|
||||||
if (prop.type.name === 'Number') return val;
|
if (prop.type.name === 'Number') return val;
|
||||||
if (prop.type.name === 'Date') {
|
if (prop.type.name === 'Date') {
|
||||||
if (!val) return 'NULL';
|
if (!val) {
|
||||||
|
if( prop.autoIncrement ) {
|
||||||
|
return 'DEFAULT';
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return 'NULL';
|
||||||
|
}
|
||||||
|
}
|
||||||
if (!val.toUTCString) {
|
if (!val.toUTCString) {
|
||||||
val = new Date(val);
|
val = new Date(val);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue