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

10 lines
134 B
Ruby

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