Answers for "install migration in ruby on rails"

2

activerecord add column

class AddPartNumberToProducts < ActiveRecord::Migration[6.0]
  def change
    add_column :products, :part_number, :string
  end
end
Posted by: Guest on November-11-2020

Code answers related to "install migration in ruby on rails"

Browse Popular Code Answers by Language