diff options
author | Luke Shumaker <shumakl@purdue.edu> | 2014-04-28 09:33:06 -0400 |
---|---|---|
committer | Luke Shumaker <shumakl@purdue.edu> | 2014-04-28 09:33:06 -0400 |
commit | e08e007a6c50e1959a29a9d18dec8c52146a233c (patch) | |
tree | 1e771145156c53530cfc5a169d4e54bfdbfb7b93 /db/migrate/20140428132929_create_tournaments.rb | |
parent | 457fa8cfce3241dd2207175caef57d978dc4f0c1 (diff) |
run ./generate.sh
Diffstat (limited to 'db/migrate/20140428132929_create_tournaments.rb')
-rw-r--r-- | db/migrate/20140428132929_create_tournaments.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20140428132929_create_tournaments.rb b/db/migrate/20140428132929_create_tournaments.rb new file mode 100644 index 0000000..f3715bb --- /dev/null +++ b/db/migrate/20140428132929_create_tournaments.rb @@ -0,0 +1,17 @@ +class CreateTournaments < ActiveRecord::Migration + def change + create_table :tournaments do |t| + t.references :game, index: true + t.integer :status + t.string :name + 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.string :scoring_method + + t.timestamps + end + add_index :tournaments, :name, unique: true + end +end |