class CreateUsers < ActiveRecord::Migration[7.0] def change create_table :users do |t| t.string :uuid t.string :username t.string :publicSalt t.string :secretSalt t.string :passwordHash end end end