Flowdock
method

change_column_for_alter

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: AbstractMysqlAdapter
change_column_for_alter(table_name, column_name, type, **options) 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_mysql_adapter.rb, line 677
        def change_column_for_alter(table_name, column_name, type, **options)
          column = column_for(table_name, column_name)
          type ||= column.sql_type

          unless options.key?(:default)
            options[:default] = column.default
          end

          unless options.key?(:null)
            options[:null] = column.null
          end

          unless options.key?(:comment)
            options[:comment] = column.comment
          end

          td = create_table_definition(table_name)
          cd = td.new_column_definition(column.name, type, **options)
          schema_creation.accept(ChangeColumnDefinition.new(cd, column.name))
        end
Register or log in to add new notes.