mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-08 23:34:51 +00:00
6 lines
134 B
Ruby
6 lines
134 B
Ruby
class AddTournamentIdToMatches < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :matches, :tournament_id, :integer
|
|
end
|
|
end
|