Answers for "active record modify column"

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

Browse Popular Code Answers by Language