2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/db/migrate/20160530203810_add_message_id_to_email_logs.rb

6 lines
172 B
Ruby

class AddMessageIdToEmailLogs < ActiveRecord::Migration[4.2]
def change
add_column :email_logs, :message_id, :string
add_index :email_logs, :message_id
end
end