aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-25 16:00:16 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-25 16:01:46 -0300
commitbe71b0ecbe4b6f2416296dd0c120b652151ebcaa (patch)
tree8f07d21015975266bd96dc6081d45854ff131b6d /activerecord/lib/active_record/connection_adapters/abstract
parentc28b8ca766e3e7c6c43d3ae900c99f8377153c62 (diff)
downloadrails-be71b0ecbe4b6f2416296dd0c120b652151ebcaa.tar.gz
rails-be71b0ecbe4b6f2416296dd0c120b652151ebcaa.tar.bz2
rails-be71b0ecbe4b6f2416296dd0c120b652151ebcaa.zip
The sql_type method called here is from
ActiveRecord::ConnectionAdapters::Column See https://github.com/rails/rails/blob/28b8ca766e3e7c6c43d3ae900c99f8377153c62/activerecord/lib/active_record/connection_adapters/column.rb#L16
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb
index f587bf8140..cdf0cbe218 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_dumper.rb
@@ -5,7 +5,7 @@ module ActiveRecord
# The goal of this module is to move Adapter specific column
# definitions to the Adapter instead of having it in the schema
# dumper itself. This code represents the normal case.
- # We can then redefine how certain data types may be handled in the schema dumper on the
+ # We can then redefine how certain data types may be handled in the schema dumper on the
# Adapter level by over-writing this code inside the database specific adapters
module ColumnDumper
def column_spec(column, types)