retrospring/db/migrate/20220718214748_drop_moderation_comments_table.rb
2022-07-19 11:17:45 +02:00

7 lines
151 B
Ruby

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