It's been waaay too long since I last committed. Eesh.

This commit is contained in:
Dan Buch
2012-03-07 00:11:05 -05:00
parent a5b139f6e7
commit ee337ba7ee
15 changed files with 323 additions and 117 deletions

View File

@@ -12,17 +12,16 @@
ActiveRecord::Schema.define(:version => 20120304164625) do
create_table "maps", :force => true do |t|
t.string "name"
t.string "unique_hash"
t.string "name", :null => false
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "mashes", :force => true do |t|
t.string "requester"
t.integer "map_a"
t.integer "map_b"
t.integer "winner"
t.string "requester", :null => false
t.integer "map_a", :null => false
t.integer "map_b", :null => false
t.integer "winner", :null => false
t.datetime "created_at"
t.datetime "updated_at"
end