- Adds the backend APIs required for Microsoft Email Channels Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Sojan <sojan@pepalo.com>
9 lines
213 B
Ruby
9 lines
213 B
Ruby
class AddMsOauthTokenToChannel < ActiveRecord::Migration[6.1]
|
|
def change
|
|
change_table :channel_email, bulk: true do |t|
|
|
t.jsonb :provider_config, default: {}
|
|
t.string :provider
|
|
end
|
|
end
|
|
end
|