Starting to fill in tournament ranking bits

This commit is contained in:
Dan Buch
2012-03-07 21:22:35 -05:00
parent a1aa03451f
commit b31926f16f
5 changed files with 64 additions and 3 deletions

View File

@@ -17,6 +17,8 @@ ActiveRecord::Schema.define(:version => 20120304164625) do
t.datetime "updated_at"
end
add_index "maps", ["name"], :name => "index_maps_on_name"
create_table "mashes", :force => true do |t|
t.string "requester", :null => false
t.integer "map_a", :null => false
@@ -26,4 +28,6 @@ ActiveRecord::Schema.define(:version => 20120304164625) do
t.datetime "updated_at"
end
add_index "mashes", ["winner"], :name => "index_mashes_on_winner"
end