自分用です!
複数のカラム追加していきます。
まずはマイグレーションファイルを作ります。
ターミナル
rails g migration add_columns_to_users
複数のカラムを追加する際、特定のカラムを意識するわけでもない場合は「add_columns」などとしておけばいいでしょう。
class AddColumnsToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :last_name, :string
add_column :users, :first_name, :string
end
end
rails db:migrateをすれば追加される。