1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 20:49:50 +00:00
discourse/spec/fixtures/db/migrate/drop_table/20990309014014_drop_table.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
165 B
Ruby
Raw Normal View History

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