add column in rails

 class AddEmailToUsers < ActiveRecord::Migration[5.0]

  def change
    add_column :users, :email, :string
  end
end

Comments

Popular posts from this blog

Rails 7 Features :: Comparison with Rails 6 and Rails 5