summaryrefslogtreecommitdiff
path: root/db/migrate/20140325201033_create_tournaments.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 16:30:13 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 16:30:13 -0400
commit4e754e04d6bd04267e5a55011aa9f4f2a2fc7859 (patch)
tree6e152c868457d24de16653e5a696cdd9518cf9d6 /db/migrate/20140325201033_create_tournaments.rb
parentecef4973baed5580e3b2500ce0a65def1132d172 (diff)
Tournament has a NAME now
Diffstat (limited to 'db/migrate/20140325201033_create_tournaments.rb')
-rw-r--r--db/migrate/20140325201033_create_tournaments.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20140325201033_create_tournaments.rb b/db/migrate/20140325201033_create_tournaments.rb
deleted file mode 100644
index 545e603..0000000
--- a/db/migrate/20140325201033_create_tournaments.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-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