summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-04-23 22:50:48 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-04-23 22:50:48 -0400
commit41a93fad32677e3f351c0e16f0c704cbfbc5404e (patch)
treeaa46c550dbd15a1f0bb0faf4e8eebb92c4970bdd /db/schema.rb
parent19b04a49d01af1917385c166501ef086eddae437 (diff)
parent47be7c86ca5193ffe4331fbb9358a9171abe748b (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index a160f22..0e9202a 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 20140422212727) do
+ActiveRecord::Schema.define(version: 20140424014459) do
create_table "alerts", force: true do |t|
t.integer "author_id"
@@ -88,6 +88,7 @@ ActiveRecord::Schema.define(version: 20140422212727) do
add_index "game_settings", ["game_id"], name: "index_game_settings_on_game_id"
create_table "games", force: true do |t|
+ t.integer "parent_id"
t.string "name"
t.integer "min_players_per_team"
t.integer "max_players_per_team"
@@ -101,6 +102,7 @@ ActiveRecord::Schema.define(version: 20140422212727) do
end
add_index "games", ["name"], name: "index_games_on_name", unique: true
+ add_index "games", ["parent_id"], name: "index_games_on_parent_id"
create_table "hosts_tournaments", id: false, force: true do |t|
t.integer "host_id", null: false