class CreateLineItems < ActiveRecord::Migration
  def self.up
    create_table :line_items do |t|
      t.foreign_key :order_id, :null => false
      t.foreign_key :offer_id, :null => false
      t.integer     :quantity, :null => false
    end
  end

  def self.down
    drop_table :line_items
  end
end

