Answers for "rails delete all tables"

5

how to delete a table in rails

rails g migration DropProducts

class DropProducts < ActiveRecord::Migration
  def change
    drop_table :products
  end
end
Posted by: Guest on February-14-2020
0

rails delete all records

Model.delete_all
Posted by: Guest on July-08-2021

Browse Popular Code Answers by Language