Answers for "rails generate migration add column"

4

Add references rails migration

rails g migration AddUserToUploads user:references
Posted by: Guest on June-06-2020
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
5

rails g migration add columns

$ rails generate migration AddDetailsToProducts part_number:string price:decimal
Posted by: Guest on August-11-2020

Code answers related to "rails generate migration add column"

Browse Popular Code Answers by Language