summaryrefslogtreecommitdiff
path: root/db/migrate/20140403155017_create_tournaments.rb
diff options
context:
space:
mode:
authorshumakl <shumakl@purdue.edu>2014-04-03 11:52:05 -0400
committershumakl <shumakl@purdue.edu>2014-04-03 11:52:05 -0400
commit8e3e46b7951120f1ec34949d607a7672ad03f820 (patch)
treed2bfc79435a4ab5c5f2dccf159066e52d8090337 /db/migrate/20140403155017_create_tournaments.rb
parentbed5a14c1e8bd4af7a066664f0ec2b57979bc96b (diff)
run generate.sh
Diffstat (limited to 'db/migrate/20140403155017_create_tournaments.rb')
-rw-r--r--db/migrate/20140403155017_create_tournaments.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20140403155017_create_tournaments.rb b/db/migrate/20140403155017_create_tournaments.rb
new file mode 100644
index 0000000..c0d8929
--- /dev/null
+++ b/db/migrate/20140403155017_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