mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
10 lines
193 B
Ruby
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
|