retrospring/db/migrate/20220718201541_drop_moderation_votes_table.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
145 B
Ruby
Raw Normal View History

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