mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 22:24:24 +08:00
12 lines
196 B
Ruby
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
|