Retrospring/db/migrate/20220718201541_drop_moderat...

8 lines
145 B
Ruby

# frozen_string_literal: true
class DropModerationVotesTable < ActiveRecord::Migration[6.1]
def up
drop_table :moderation_votes
end
end