aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251029010650_add_role_to_users.rb
blob: 4aa1d12270d7cf8cf2dee61326c323f53b1d9262 (plain)
1
2
3
4
5
class AddRoleToUsers < ActiveRecord::Migration[8.1]
  def change
    add_column :users, :role, :integer, null: false, default: 0
  end
end