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