1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/db/migrate/20230102040503_set_all_existing_tournaments_as_public.rb

10 lines
193 B
Ruby

class SetAllExistingTournamentsAsPublic < ActiveRecord::Migration[6.1]
def up
Tournament.update_all(is_public: true)
end
def down
Tournament.update_all(is_public: nil)
end
end