retrospring/db/migrate/20220718201541_drop_moderation_votes_table.rb
2022-07-18 23:10:07 +02:00

7 lines
145 B
Ruby

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