class CreateLoads < ActiveRecord::Migration def self.up create_table :loads do |t| t.string :number t.date :start_date t.date :end_date t.integer :hub_in t.integer :hub_out t.timestamps end end def self.down drop_table :loads end end