summaryrefslogtreecommitdiff
path: root/db/schema.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/schema.rb
parentecef4973baed5580e3b2500ce0a65def1132d172 (diff)
Tournament has a NAME now
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 0394946..952cb26 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: 20140325201109) do
+ActiveRecord::Schema.define(version: 20140325202910) do
create_table "alerts", force: true do |t|
t.integer "author_id"
@@ -139,6 +139,7 @@ ActiveRecord::Schema.define(version: 20140325201109) do
add_index "tournament_options", ["tournament_id"], name: "index_tournament_options_on_tournament_id"
create_table "tournaments", force: true do |t|
+ t.string "name"
t.integer "game_id"
t.integer "status"
t.integer "min_players_per_team"