1 2 3 4 5 6 7
class DeleteTranslations < ActiveRecord::Migration def change if table_exists?('translations') drop_table :translations end end end