summaryrefslogtreecommitdiff
path: root/db/migrate/20230222012901_add_role_to_user_account.rb
blob: 9e234a54e4bc2dcc4736849227fd0683da708b6e (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

# Add the role column to the user account table.
class AddRoleToUserAccount < ActiveRecord::Migration[7.0]
  def change
    add_column :user_accounts, :role, :string
  end
end