mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-28 16:55:47 +08:00
8 lines
207 B
Ruby
Vendored
8 lines
207 B
Ruby
Vendored
# 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
|