summaryrefslogtreecommitdiff
path: root/db/migrate/20140424202649_create_bracket_matches.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-04-24 17:58:22 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-04-24 17:58:22 -0400
commit76ee2a59964be6707cab25053697a2d848bbcd52 (patch)
treed9e815057b04cfb3af2b0c98ca3c2d1c808c4f3b /db/migrate/20140424202649_create_bracket_matches.rb
parent7fe1894becda038c3e85ba179dc27ce3b54690dc (diff)
parent976325f60e7706e480f3d45848897200734c8485 (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db/migrate/20140424202649_create_bracket_matches.rb')
-rw-r--r--db/migrate/20140424202649_create_bracket_matches.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20140424202649_create_bracket_matches.rb b/db/migrate/20140424202649_create_bracket_matches.rb
new file mode 100644
index 0000000..3323e31
--- /dev/null
+++ b/db/migrate/20140424202649_create_bracket_matches.rb
@@ -0,0 +1,11 @@
+class CreateBracketMatches < ActiveRecord::Migration
+ def change
+ create_table :bracket_matches do |t|
+ t.references :bracket, index: true
+ t.references :match, index: true
+ t.references :predicted_winner, index: true
+
+ t.timestamps
+ end
+ end
+end