discourse/spec/fixtures/db/migrate/drop_table/20990309014014_drop_table.rb

12 lines
165 B
Ruby

# frozen_string_literal: true
class DropTable < ActiveRecord::Migration[5.1]
def up
drop_table :email_logs
end
def down
raise "not tested"
end
end