class CreateContabilidadeContasDoEventoManual < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_contas_do_evento_manual do |t|
      t.bigint :evento_contabil_manual_id
      t.bigint :conta_id
      t.integer :tipo_de_lancamento

      t.timestamps
    end
  end
end
