20110403184315_create_production_cost.rb 271 Bytes
class CreateProductionCost < ActiveRecord::Migration
  def self.up
    create_table :production_costs do |t|
      t.string :name
      t.references :owner, :polymorphic => true
      t.timestamps
    end
  end

  def self.down
    drop_table :production_costs
  end
end