# File lib/active_record/connection_adapters/mysql_adapter.rb, line 204 def change_column_default(table_name, column_name, default) current_type = select_one("SHOW COLUMNS FROM #{table_name} LIKE '#{column_name}'")["Type"] change_column(table_name, column_name, current_type, { :default => default }) end