diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-07 00:10:24 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-07 00:10:24 -0500 |
commit | b2e0b1397596ee8f624ef4de122cc71599d4dc0d (patch) | |
tree | 6db9542609d2150162441f28c7e3932cad0de1d7 /db/migrate/20140307050059_create_match_team_join_table.rb | |
parent | abfb00904d5497c320200f3586fe503820ac651c (diff) | |
parent | 4f8c33b425b075b80ccb32aec35e98a895f59f9c (diff) |
Merge branch 'master' of http://github.com/LukeShu/leaguer
Diffstat (limited to 'db/migrate/20140307050059_create_match_team_join_table.rb')
-rw-r--r-- | db/migrate/20140307050059_create_match_team_join_table.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/20140307050059_create_match_team_join_table.rb b/db/migrate/20140307050059_create_match_team_join_table.rb new file mode 100644 index 0000000..c2ed1b7 --- /dev/null +++ b/db/migrate/20140307050059_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 |