Files
discourse/db/migrate/20160418065403_add_bounce_key_to_email_log.rb
T

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

8 lines
163 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddBounceKeyToEmailLog < ActiveRecord::Migration[4.2]
2016-04-18 17:13:41 +10:00
def change
add_column :email_logs, :bounce_key, :string
end
end