discourse/db/migrate/20180724070554_drop_topic_id_on_email_logs.rb

6 lines
123 B
Ruby
Raw Normal View History

2018-07-24 15:18:57 +08:00
class DropTopicIdOnEmailLogs < ActiveRecord::Migration[5.2]
def change
remove_index :email_logs, :topic_id
end
end