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