Flowdock
method

column_spec_for_primary_key

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: SchemaDumper
column_spec_for_primary_key(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 22
          def column_spec_for_primary_key(column)
            spec = super
            spec.delete(:auto_increment) if column.type == :integer && column.auto_increment?
            spec
          end
Register or log in to add new notes.