feat: Allow custom email address for inbox (#1336)
This commit is contained in:
9
db/migrate/20201011152227_add_email_address_to_inbox.rb
Normal file
9
db/migrate/20201011152227_add_email_address_to_inbox.rb
Normal 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
|
||||
Reference in New Issue
Block a user