- Published on
Railsでdb:migrate済みのテーブルにカラムを追加する
- Authors
- Name
- Shou Arisaka / 有坂翔
Railsでdb:migrate済みのテーブルにカラムを追加する方法についてメモです。 rails generate migrationコマンドを以下のように使用します。 例えば、rails generate migration add_count_to_counts count:integer
といったものです。
# rails generate migration add_[カラム名]_to_[テーブル名] [カラム名]:[型]
rails generate migration add_count_to_counts count:integer
rails db:migrate