Answers for "create a new migration in 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 "create a new migration in rails"

Browse Popular Code Answers by Language