mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 05:56:03 +01:00
8 lines
151 B
Ruby
8 lines
151 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class DropModerationCommentsTable < ActiveRecord::Migration[6.1]
|
||
|
def up
|
||
|
drop_table :moderation_comments
|
||
|
end
|
||
|
end
|