Answers for "rails delete model and table"

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 remove model

rails destroy model <model_name>
Posted by: Guest on December-28-2020

Browse Popular Code Answers by Language