Flowdock
method

column_spec

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: ColumnDumper
column_spec(column, types) public

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_dumper.rb, line 11
      def column_spec(column, types)
        spec = prepare_column_options(column, types)
        (spec.keys - [:name, :type]).each{ |k| spec[k].insert(0, "#{k.to_s}: ")}
        spec
      end
Register or log in to add new notes.