summaryrefslogtreecommitdiff
path: root/db/migrate/20140325214525_create_tournaments.rb
diff options
context:
space:
mode:
authorTomer Kimia <tkimia@purdue.edu>2014-03-27 16:59:11 -0400
committerTomer Kimia <tkimia@purdue.edu>2014-03-27 16:59:11 -0400
commita683a208e31d5bafe7658521921f9f2c1a637418 (patch)
treeabf23ef14f584583973796b3da573c5061eb8533 /db/migrate/20140325214525_create_tournaments.rb
parentaeda550c2ad04c9496a803b1d7f1d34a4566a9fe (diff)
parentd8acc6785ee41a2628cd0d59d91916b2f087290b (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Conflicts: app/views/tournaments/show.html.erb
Diffstat (limited to 'db/migrate/20140325214525_create_tournaments.rb')
-rw-r--r--db/migrate/20140325214525_create_tournaments.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20140325214525_create_tournaments.rb b/db/migrate/20140325214525_create_tournaments.rb
new file mode 100644
index 0000000..c0d8929
--- /dev/null
+++ b/db/migrate/20140325214525_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