Add full request JSON to bounced mail, remove unused views

This commit is contained in:
Karl Erik Õunapuu 2020-09-17 14:21:25 +03:00
parent 6af37a787d
commit 834b2c95bc
No known key found for this signature in database
GPG key ID: C9DD647298A34764
10 changed files with 31 additions and 90 deletions

View file

@ -0,0 +1,5 @@
class AddRecipientJsonToBouncedMailAddress < ActiveRecord::Migration[6.0]
def change
add_column :bounced_mail_addresses, :recipient_json, :jsonb, null: false
end
end