added double quotes to field names

This commit is contained in:
bitmage 2012-05-03 10:28:08 -07:00
parent 2b67400525
commit 64cfb9ee01
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ PG.prototype.autoupdate = function (cb) {
var wait = 0;
Object.keys(this._models).forEach(function (model) {
wait += 1;
self.query('SELECT column_name as Field, udt_name as Type, is_nullable as Null, column_default as Default FROM information_schema.COLUMNS WHERE table_name = \''+ self.table(model) + '\'', function (err, fields) {
self.query('SELECT column_name as "Field", udt_name as "Type", is_nullable as "Null", column_default as "Default" FROM information_schema.COLUMNS WHERE table_name = \''+ self.table(model) + '\'', function (err, fields) {
self.alterTable(model, fields, done);
});
});