summaryrefslogtreecommitdiff
path: root/db/migrate/20140307003719_create_tournaments.rb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-06 19:47:20 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-06 19:47:20 -0500
commit706392b7c4520382ddd8f827b31205c6b71f5320 (patch)
tree55444920bb49c5cc104e919737ebcda44eb45321 /db/migrate/20140307003719_create_tournaments.rb
parenteebd00ba4692a6a285c9807705331ab924ce225f (diff)
parentd72452a5965c0df32a13053ae86bcd529fc0fc9e (diff)
Merge branch 'clean'
Conflicts: app/controllers/tournaments_controller.rb app/views/teams/show.html.erb app/views/tournaments/index.html.erb config/routes.rb
Diffstat (limited to 'db/migrate/20140307003719_create_tournaments.rb')
-rw-r--r--db/migrate/20140307003719_create_tournaments.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/db/migrate/20140307003719_create_tournaments.rb b/db/migrate/20140307003719_create_tournaments.rb
new file mode 100644
index 0000000..545e603
--- /dev/null
+++ b/db/migrate/20140307003719_create_tournaments.rb
@@ -0,0 +1,16 @@
+class CreateTournaments < ActiveRecord::Migration
+ def change
+ create_table :tournaments do |t|
+ 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