From c3af8b2aeae00d7b70ba250c7b6b5b2df12452c1 Mon Sep 17 00:00:00 2001 From: Anatoliy Chakkaev Date: Mon, 10 Sep 2012 19:59:06 +0400 Subject: [PATCH] Fix postgres --- lib/adapters/postgres.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/adapters/postgres.js b/lib/adapters/postgres.js index 0c0d23bf..07edc3f2 100644 --- a/lib/adapters/postgres.js +++ b/lib/adapters/postgres.js @@ -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 } };