Answers for "how can I drop table in rails"

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

droptable rails

drop_table :table_name
Posted by: Guest on August-21-2021

Code answers related to "how can I drop table in rails"

Browse Popular Code Answers by Language