Flowdock
method

change_column_for_alter

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: SchemaStatements
change_column_for_alter(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/connection_adapters/postgresql/schema_statements.rb, line 730
          def change_column_for_alter(table_name, column_name, type, **options)
            td = create_table_definition(table_name)
            cd = td.new_column_definition(column_name, type, **options)
            sqls = [schema_creation.accept(ChangeColumnDefinition.new(cd, column_name))]
            sqls << Proc.new { change_column_comment(table_name, column_name, options[:comment]) } if options.key?(:comment)
            sqls
          end
Register or log in to add new notes.