Retrospring/db/migrate/20220718201541_drop_moderat...

8 lines
145 B
Ruby
Raw Normal View History

2022-07-18 13:36:03 -07:00
# frozen_string_literal: true
class DropModerationVotesTable < ActiveRecord::Migration[6.1]
def up
drop_table :moderation_votes
end
end