summaryrefslogtreecommitdiff
path: root/db/migrate/20140424230701_create_match_team_join_table.rb
diff options
context:
space:
mode:
authornfoy <nfoy@purdue.edu>2014-04-24 19:15:27 -0400
committernfoy <nfoy@purdue.edu>2014-04-24 19:15:27 -0400
commitddfe11c0444cf424cad3d14bc9be48d32423f3dd (patch)
tree135db4cd6bf22380953315ea1244f720a5419e2d /db/migrate/20140424230701_create_match_team_join_table.rb
parent1b11684986136ee87da6242c3ba6aba5ef581510 (diff)
parent67d95e5b92e3d19765c7ccaf5460737ffe2173f4 (diff)
Merge branch 'clean2'
Conflicts: app/models/pm.rb app/views/pms/index.html.erb app/views/pms/show.html.erb
Diffstat (limited to 'db/migrate/20140424230701_create_match_team_join_table.rb')
-rw-r--r--db/migrate/20140424230701_create_match_team_join_table.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20140424230701_create_match_team_join_table.rb b/db/migrate/20140424230701_create_match_team_join_table.rb
new file mode 100644
index 0000000..c2ed1b7
--- /dev/null
+++ b/db/migrate/20140424230701_create_match_team_join_table.rb
@@ -0,0 +1,8 @@
+class CreateMatchTeamJoinTable < ActiveRecord::Migration
+ def change
+ create_join_table :matches, :teams do |t|
+ # t.index [:match_id, :team_id]
+ # t.index [:team_id, :match_id]
+ end
+ end
+end