Fix postgres

This commit is contained in:
Anatoliy Chakkaev 2012-09-10 19:59:06 +04:00
parent b481e4c096
commit c3af8b2aea
1 changed files with 0 additions and 4 deletions

View File

@ -527,10 +527,6 @@ function datatype(p) {
return 'timestamp';
case 'Boolean':
return 'boolean';
default:
console.log("Warning: postgres adapter does not explicitly handle type '" + p.type.name +"'");
return p.type.toLowerCase();
//TODO a default case might not be the safest thing here... postgres has a fair number of extra types though
}
};