Skip to content

Commit e2e6a2f

Browse files
committed
Revert "Prefer SQL column type over normalized AR type"
This reverts commit 067ce52.
1 parent 7201329 commit e2e6a2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/annotate/annotate_models.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def get_schema_info(klass, header, options = {})
140140
attrs << "not null" unless col.null
141141
attrs << "primary key" if klass.primary_key && (klass.primary_key.is_a?(Array) ? klass.primary_key.collect{|c|c.to_sym}.include?(col.name.to_sym) : col.name.to_sym == klass.primary_key.to_sym)
142142

143-
col_type = (col.sql_type || col.type).to_s
143+
col_type = (col.type || col.sql_type).to_s
144144
if col_type == "decimal"
145145
col_type << "(#{col.precision}, #{col.scale})"
146146
elsif col_type != "spatial"

spec/annotate/annotate_models_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def mock_column(name, type, options={})
4545

4646
stubs = default_options.dup
4747
stubs.merge!(options)
48-
stubs.merge!(:name => name, :sql_type => type, :type => type)
48+
stubs.merge!(:name => name, :type => type)
4949

5050
double("Column", stubs)
5151
end

0 commit comments

Comments
 (0)