Published
- 1 min read
how to delete a table in rails
The solution for this is noted below
how to delete a table in rails
Solution
rails g migration DropProducts
class DropProducts < ActiveRecord::Migration
def change
drop_table :products
end
end
Try other methods by searching on the site. That is if this doesn’t work