class RemoveColumnsFromLoggings < ActiveRecord::Migration[6.0]
  def change
    remove_column :loggings, :ip_address, :string
    remove_column :loggings, :port, :integer
    remove_column :loggings, :username, :string
    remove_column :loggings, :password, :string
  end
end
