class CreateContabilidadeLotesBancarios < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_lotes_bancarios do |t|
      t.date :data_do_pagamento
      t.string :numero
      t.integer :agencia_id
      t.integer :forma_de_pagamento
      t.integer :envio_ao_banco
      t.boolean :transferivel
      t.integer :convenio_bancario_id

      t.timestamps
    end
  end
end
