box-o-sand/rails/map-mash/db/migrate/20120304164625_create_mashes.rb
2012-03-04 11:51:35 -05:00

17 lines
271 B
Ruby

class CreateMashes < ActiveRecord::Migration
def self.up
create_table :mashes do |t|
t.string :requester
t.integer :map_a
t.integer :map_b
t.integer :winner
t.timestamps
end
end
def self.down
drop_table :mashes
end
end