Add winner column to match

This commit is contained in:
Daniel Schädler 2019-05-08 23:09:39 +02:00
parent a812e7103d
commit 6c109df54f
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddWinnerToMatch < ActiveRecord::Migration[5.2]
def change
add_column :matches, :winner, :Team
end
end