class CreateContabilidadeContasPorEventosContabeis < ActiveRecord::Migration[4.2]
  def change
    create_table :contabilidade_contas_por_eventos_contabeis do |t|
      t.integer :conta_id
      t.integer :evento_contabil_id
      t.integer :tipo_de_lancamento

      t.timestamps null: false
    end
  end
end
