discourse/db/migrate/20190123171817_drop_queued_posts.rb

12 lines
196 B
Ruby

# frozen_string_literal: true
class DropQueuedPosts < ActiveRecord::Migration[5.2]
def up
drop_table :queued_posts
end
def down
raise ActiveRecord::IrreversibleMigration
end
end