change column integer migration ruby code example
Example 1: change column rails example
def change
change_column(:table_name, :column_name, :new_type)
end
Example 2: rails g migration add columns
$ rails generate migration AddDetailsToProducts part_number:string price:decimal