summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
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