summaryrefslogtreecommitdiff
path: root/db/migrate/20140424014431_create_tournaments.rb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-24 16:28:14 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-24 16:28:14 -0400
commitae9a64f4e2e7a654e28744f1c8ca98681bb70301 (patch)
tree88af651a4b060685c18053f0c39b383011ef8981 /db/migrate/20140424014431_create_tournaments.rb
parenta05373ca55332c239d303cc83dfa8b2ab95e88b3 (diff)
run ./generate.sh
Diffstat (limited to 'db/migrate/20140424014431_create_tournaments.rb')
-rw-r--r--db/migrate/20140424014431_create_tournaments.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20140424014431_create_tournaments.rb b/db/migrate/20140424014431_create_tournaments.rb
deleted file mode 100644
index 716871f..0000000
--- a/db/migrate/20140424014431_create_tournaments.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-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.integer :set_rounds
- t.boolean :randomized_teams
- t.string :sampling_method
-
- t.timestamps
- end
- add_index :tournaments, :name, unique: true
- end
-end