Updating schema with mash tournaments

cat-town
Dan Buch 13 years ago
parent e9930da9f1
commit d4dda1e9d8

@ -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

Loading…
Cancel
Save