From b59aa7c21ae04a399639209717b980d731c5bf13 Mon Sep 17 00:00:00 2001 From: AndrewMurrell Date: Mon, 3 Mar 2014 11:40:05 -0500 Subject: Some of the stuff I forgot to commit last night. Updated and cleaned up some pages as well as getting the gameType listing to work. --- db/migrate/20140304021000_create_team_match_pairs.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 db/migrate/20140304021000_create_team_match_pairs.rb (limited to 'db/migrate/20140304021000_create_team_match_pairs.rb') diff --git a/db/migrate/20140304021000_create_team_match_pairs.rb b/db/migrate/20140304021000_create_team_match_pairs.rb new file mode 100644 index 0000000..8fac07e --- /dev/null +++ b/db/migrate/20140304021000_create_team_match_pairs.rb @@ -0,0 +1,10 @@ +class CreateTeamMatchPairs < ActiveRecord::Migration + def change + create_table :team_match_pairs do |t| + t.references :team, index: true + t.references :match, index: true + + t.timestamps + end + end +end -- cgit v1.2.3-2-g168b