mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-10 15:50:50 +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
|