# frozen_string_literal: true # CreateUserAccount migration. class CreateUserAccounts < ActiveRecord::Migration[7.0] def change create_table :user_accounts do |t| t.string :email t.string :password_digest t.string :first_name t.string :last_name t.string :session_key t.timestamps end end end