Flowdock
method

add_column

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: V5_0
add_column(table_name, column_name, type, **options) 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/migration/compatibility.rb, line 206
        def add_column(table_name, column_name, type, **options)
          if type == :primary_key
            type = :integer
            options[:primary_key] = true
          end
          super
        end
Register or log in to add new notes.