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

5 lines
114 B
Ruby

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