summaryrefslogtreecommitdiff
path: root/db/migrate/20260716165542_add_password_digest_to_users.rb
blob: df711d72ffbb80d31bbe1ec8fdb4f56e0342a49e (plain)
1
2
3
4
5
class AddPasswordDigestToUsers < ActiveRecord::Migration[8.1]
  def change
    add_column :users, :password_digest, :string
  end
end