Add password reset

Closes #15
This commit is contained in:
ricola 2025-06-07 18:38:33 -06:00
parent 84278741a5
commit fa4f77c365
14 changed files with 222 additions and 32 deletions

View file

@ -0,0 +1,5 @@
class AddResetToUsers < ActiveRecord::Migration[7.2]
def change
add_column :users, :reset, :string
end
end