mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00:00
7 lines
177 B
Ruby
7 lines
177 B
Ruby
class AddIndexEmailLogsOnBounced < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_index :email_logs, :bounced
|
|
remove_index :email_logs, [:user_id, :created_at]
|
|
end
|
|
end
|