Files
discourse/db/migrate/20160530203810_add_message_id_to_email_logs.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
203 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddMessageIdToEmailLogs < ActiveRecord::Migration[4.2]
2016-06-01 21:48:06 +02:00
def change
add_column :email_logs, :message_id, :string
add_index :email_logs, :message_id
end
end