summaryrefslogtreecommitdiff
path: root/db/migrate/20140407000011_create_games.rb
diff options
context:
space:
mode:
authorAndrewMurrell <amurrel@purdue.edu>2014-04-07 04:16:18 -0400
committerAndrewMurrell <amurrel@purdue.edu>2014-04-07 04:16:18 -0400
commitc3af0f5b51dfe842ad9e4c5ea93e202e26e818ac (patch)
treec22f1cc916d98c7271635ecae48b62e8ea128012 /db/migrate/20140407000011_create_games.rb
parent8e7ca204ab9a702be483621f4fe9df68b03ffec0 (diff)
Ran generate.sh
Diffstat (limited to 'db/migrate/20140407000011_create_games.rb')
-rw-r--r--db/migrate/20140407000011_create_games.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20140407000011_create_games.rb b/db/migrate/20140407000011_create_games.rb
deleted file mode 100644
index 5e4f56f..0000000
--- a/db/migrate/20140407000011_create_games.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class CreateGames < ActiveRecord::Migration
- def change
- create_table :games do |t|
- t.text :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.timestamps
- end
- end
-end