From d4dda1e9d8befcde06c8ba3874e3ba8d9501cc7b Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Fri, 9 Mar 2012 08:07:08 -0500 Subject: [PATCH] Updating schema with mash tournaments --- rails/map-mash/db/schema.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/rails/map-mash/db/schema.rb b/rails/map-mash/db/schema.rb index c3cc52a..dec9469 100644 --- a/rails/map-mash/db/schema.rb +++ b/rails/map-mash/db/schema.rb @@ -9,7 +9,7 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20120309000749) do +ActiveRecord::Schema.define(:version => 20120309130609) do create_table "maps", :force => true do |t| t.string "name", :null => false @@ -21,6 +21,12 @@ ActiveRecord::Schema.define(:version => 20120309000749) do add_index "maps", ["name"], :name => "index_maps_on_name" add_index "maps", ["points"], :name => "index_maps_on_points" + create_table "mash_tournaments", :force => true do |t| + t.integer "requester_id" + t.datetime "created_at" + t.datetime "updated_at" + end + create_table "mashes", :force => true do |t| t.integer "requester_id", :null => false t.integer "map_a_id", :null => false