feat: Allow custom email address for inbox (#1336)

This commit is contained in:
Pranav Raj S
2020-10-11 23:24:11 +05:30
committed by GitHub
parent 58c0792920
commit 2c324d9421
5 changed files with 37 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
class AddEmailAddressToInbox < ActiveRecord::Migration[6.0]
def up
add_column :inboxes, :email_address, :string
end
def down
remove_column(:inboxes, :email_address)
end
end