class CreateContabilidadeFontesPorElementoDaSolicitacao < ActiveRecord::Migration[4.2]
  def change
    create_table :contabilidade_fontes_por_elemento_da_solicitacao do |t|
      t.integer :elemento_da_solicitacao_de_alteracao_id
      t.integer :fonte_de_recurso_id
      t.float :valor
    end
  end
end
