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

6 lines
135 B
Ruby

class AddIsPublicToTournaments < ActiveRecord::Migration[6.1]
def change
add_column :tournaments, :is_public, :boolean
end
end