summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-03 21:24:45 -0500
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-03 21:24:45 -0500
commit271f890f06ac94a785f3223d0c44a7fa8b9d74f7 (patch)
treeb3628277be3079937743758e1af65bc5103f2a85 /db
parentb8c14b654255376d79fae55e139a968930be4569 (diff)
Log out button
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20140220221228_create_servers.rb8
-rw-r--r--db/migrate/20140220221236_create_matches.rb9
-rw-r--r--db/migrate/20140228014045_create_games.rb13
3 files changed, 0 insertions, 30 deletions
diff --git a/db/migrate/20140220221228_create_servers.rb b/db/migrate/20140220221228_create_servers.rb
deleted file mode 100644
index f33241a..0000000
--- a/db/migrate/20140220221228_create_servers.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-class CreateServers < ActiveRecord::Migration
- def change
- create_table :servers do |t|
-
- t.timestamps
- end
- end
-end
diff --git a/db/migrate/20140220221236_create_matches.rb b/db/migrate/20140220221236_create_matches.rb
deleted file mode 100644
index 6c0c157..0000000
--- a/db/migrate/20140220221236_create_matches.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-class CreateMatches < ActiveRecord::Migration
- def change
- create_table :matches do |t|
- t.references :tournament, index: true
-
- t.timestamps
- end
- end
-end
diff --git a/db/migrate/20140228014045_create_games.rb b/db/migrate/20140228014045_create_games.rb
deleted file mode 100644
index 59d4ef0..0000000
--- a/db/migrate/20140228014045_create_games.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class CreateGames < ActiveRecord::Migration
- def change
- create_table :games do |t|
- t.text :name
- t.integer :players_per_team
- t.integer :teams_per_match
- t.integer :set_rounds
- t.integer :randomized_teams
-
- t.timestamps
- end
- end
-end