class CreateMarkets < ActiveRecord::Migration def self.up create_table "markets", :force => true do |t| t.column "team_id", :integer t.column "round", :integer t.column "game", :integer t.column "outstanding_shares", :float t.column "volume", :float t.column "price", :float end end def self.down drop_table :markets end end