# 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