instance method
rename_column_sql
Ruby on Rails 4.1.16
Since v3.2.22.5 Last seen in v4.2.9Signature
rename_column_sql(table_name, column_name, new_column_name)
No documentation comment.
Parameters
-
table_namereq -
column_namereq -
new_column_namereq
Source
# File activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb, line 687
def rename_column_sql(table_name, column_name, new_column_name)
options = { name: new_column_name }
if column = columns(table_name).find { |c| c.name == column_name.to_s }
options[:default] = column.default
options[:null] = column.null
options[:auto_increment] = (column.extra == "auto_increment")
else
raise ActiveRecordError, "No such column: #{table_name}.#{column_name}"
end
current_type = select_one("SHOW COLUMNS FROM #{quote_table_name(table_name)} LIKE '#{column_name}'", 'SCHEMA')["Type"]
schema_creation.accept ChangeColumnDefinition.new column, current_type, options
end
Defined in activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb line 687
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter