モデルのデータをまとめて削除する

class TestController < ApplicationController
  def index
    Employee.where('id <= 10').delete_all
    @test = Employee.count
  end
end
モデルのデータをまとめて削除するには、
モデル.delete_all

と記入してください。

上の例では、Employeeモデルのidが20以下のデータを削除しています。