mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
10 lines
190 B
Ruby
10 lines
190 B
Ruby
class AddEmailAddressToInbox < ActiveRecord::Migration[6.0]
|
|
def up
|
|
add_column :inboxes, :email_address, :string
|
|
end
|
|
|
|
def down
|
|
remove_column(:inboxes, :email_address)
|
|
end
|
|
end
|