From e30699f66034405de0eaaad12066c2c7d266762f Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Sun, 9 Oct 2005 00:52:25 +0000 Subject: Add geometric type for postgresql adapter. Closes #2233. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2498 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../lib/active_record/connection_adapters/postgresql_adapter.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'activerecord/lib/active_record') diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index b908c10049..a115291101 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -354,6 +354,8 @@ module ActiveRecord when /^timestamp/i then 'datetime' when /^real|^money/i then 'float' when /^interval/i then 'string' + # geometric types (the line type is currently not implemented in postgresql) + when /^point|lseg|box|path|polygon|circle/i then 'string' when /^bytea/i then 'binary' else field_type # Pass through standard types. end -- cgit v1.2.3