Flowdock
method

schema_type

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: SchemaDumper
schema_type(column) 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/mysql/schema_dumper.rb, line 40
          def schema_type(column)
            case column.sql_type
            when /\Atimestamp\b/
              :timestamp
            when /\A(?:enum|set)\b/
              column.sql_type
            else
              super
            end
          end
Register or log in to add new notes.