class CreateBaseElementosPorCategoria < ActiveRecord::Migration[4.2]
  def change
    create_table :base_elementos_por_categoria do |t|
      t.references :elemento_de_gasto, polymorphic: true, index:{name: :index_elementos_por_categoria_on_elemento_de_gasto_type_and_id}
      t.integer :categoria_id

      t.timestamps null: false
    end
  end
end
