Retrospring/db/migrate/20220718214748_drop_moderat...

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

8 lines
151 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class DropModerationCommentsTable < ActiveRecord::Migration[6.1]
def up
drop_table :moderation_comments
end
end