mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-05-08 07:03:47 +00:00
Upgraded to rails 8.0.2, moved from dalli to solid cache, moved from delayed_job to solid queue, and add solid cable. deploy/rails-dev-run.sh no longer needs to chmod. Fixed finished_at callback for matches. Migrated from Devise to built in rails auth. Added view tests for the bracket page testing that all bout numbers render for all matches in each bracket type.
This commit is contained in:
6
db/migrate/2025040700002_add_reset_columns_to_users.rb
Normal file
6
db/migrate/2025040700002_add_reset_columns_to_users.rb
Normal file
@@ -0,0 +1,6 @@
|
||||
class AddResetColumnsToUsers < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :users, :reset_digest, :string unless column_exists?(:users, :reset_digest)
|
||||
add_column :users, :reset_sent_at, :datetime unless column_exists?(:users, :reset_sent_at)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user