現在、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