diff options
author | AndrewMurrell <amurrel@purdue.edu> | 2014-04-07 04:16:18 -0400 |
---|---|---|
committer | AndrewMurrell <amurrel@purdue.edu> | 2014-04-07 04:16:18 -0400 |
commit | c3af0f5b51dfe842ad9e4c5ea93e202e26e818ac (patch) | |
tree | c22f1cc916d98c7271635ecae48b62e8ea128012 /db/migrate/20140407081437_create_tournaments.rb | |
parent | 8e7ca204ab9a702be483621f4fe9df68b03ffec0 (diff) |
Ran generate.sh
Diffstat (limited to 'db/migrate/20140407081437_create_tournaments.rb')
-rw-r--r-- | db/migrate/20140407081437_create_tournaments.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20140407081437_create_tournaments.rb b/db/migrate/20140407081437_create_tournaments.rb new file mode 100644 index 0000000..c0d8929 --- /dev/null +++ b/db/migrate/20140407081437_create_tournaments.rb @@ -0,0 +1,17 @@ +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 |