Flowdock
method

extract_scale

Importance_0
v2.0.3 - Show latest stable - 0 notes - Class: ActiveRecord::ConnectionAdapters::Column
extract_scale(sql_type) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb, line 215
        def extract_scale(sql_type)
          case sql_type
            when /^(numeric|decimal|number)\((\d+)\)/i then 0
            when /^(numeric|decimal|number)\((\d+)(,(\d+))\)/i then $4.to_i
          end
        end
Register or log in to add new notes.