diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-04-04 21:06:05 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-04-04 21:06:05 -0400 |
commit | b43bab15521c7c511ab7012bd137daa0e85bb95b (patch) | |
tree | 743853b82557941de7f18951f5d284dc6b7f7d8f /db/migrate/20140403155017_create_tournaments.rb | |
parent | e61fe55c0a745d5ab80acdcccec26e2a2d379be1 (diff) |
run generate.sh
Diffstat (limited to 'db/migrate/20140403155017_create_tournaments.rb')
-rw-r--r-- | db/migrate/20140403155017_create_tournaments.rb | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20140403155017_create_tournaments.rb b/db/migrate/20140403155017_create_tournaments.rb deleted file mode 100644 index c0d8929..0000000 --- a/db/migrate/20140403155017_create_tournaments.rb +++ /dev/null @@ -1,17 +0,0 @@ -class CreateTournaments < ActiveRecord::Migration - def change - create_table :tournaments do |t| - t.string :name - t.references :game, index: true - t.integer :status - t.integer :min_players_per_team - t.integer :max_players_per_team - t.integer :min_teams_per_match - t.integer :max_teams_per_match - t.integer :set_rounds - t.boolean :randomized_teams - - t.timestamps - end - end -end |