class CreateContabilidadeEventosContabeisPorGerador < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_eventos_contabeis_por_gerador do |t|
      t.integer :evento_contabil_id
      t.integer :gerador_id
      t.string :gerador_type

      t.timestamps
    end
  end
end
