1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-10 15:50:50 +00:00

First crack at setting an owner for the tournament

This commit is contained in:
2015-10-23 08:53:29 -04:00
parent f204024b23
commit ad9ea9dc42
14 changed files with 76 additions and 72 deletions

View File

@@ -0,0 +1,6 @@
class AddUserIdToTournaments < ActiveRecord::Migration
def change
add_column :tournaments, :user_id, :integer
add_index :tournaments, :user_id
end
end