Answers for "drop table migration 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

rails migration remove colum

remove_column :table_name, :column_name
Posted by: Guest on March-19-2021
0

how to destroy a migration in rails

$ rails d migration SameMigrationNameAsUsedToGenerate
Posted by: Guest on July-21-2021

Browse Popular Code Answers by Language