Rails 生成 移行 質問する

Rails 生成 移行 質問する

現在、Products という移行があり、説明や製品タイプなどの文字列をこの移行にいくつか追加したいだけです。これを行う最善の方法は何ですか?

class CreateProducts < ActiveRecord::Migration
  def change
    create_table :products do |t|
      t.string  :name
      t.decimal :price
      t.text    :description
      t.timestamps
    end
   end
 end

ベストアンサー1

ただ走れ

rails g migration add_description_to_products description:string
rails g migration add_product_type_to_products product_type:string

そして実行する

rake db:migrate

出典:

移行の作成

移行の実行

おすすめ記事