mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:03:57 -06:00
9 lines
207 B
Ruby
9 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIndexEmailLogsOnBounced < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_index :email_logs, :bounced
|
|
remove_index :email_logs, %i[user_id created_at]
|
|
end
|
|
end
|