mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 20:08:26 +00:00
7 lines
167 B
Ruby
7 lines
167 B
Ruby
|
class AddMessageIdToEmailLogs < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :email_logs, :message_id, :string
|
||
|
add_index :email_logs, :message_id
|
||
|
end
|
||
|
end
|