method
add_column
v8.0.0 -
Show latest stable
- Class:
ActiveRecord::Migration::Compatibility::V5_0
add_column(table_name, column_name, type, **options)public
No documentation available.
# File activerecord/lib/active_record/migration/compatibility.rb, line 392
def add_column(table_name, column_name, type, **options)
if type == :primary_key
type = :integer
options[:primary_key] = true
elsif type == :datetime
options[:precision] ||= nil
end
super
end