summaryrefslogtreecommitdiff
path: root/db/migrate/20231031050050_add_name_to_users.rb
blob: 75a2fd3e72821b27f691071345cf31bb675a7825 (plain)
1
2
3
4
5
class AddNameToUsers < ActiveRecord::Migration[7.1]
  def change
    add_column :users, :name, :string
  end
end