chore: Add support for message_templates in API inbox (#4835)

This commit is contained in:
Pranav Raj S
2022-06-10 18:40:29 +05:30
committed by GitHub
parent 9bac5873ef
commit 3f3ee6c34a
8 changed files with 44 additions and 25 deletions

View File

@@ -0,0 +1,5 @@
class AddAdditionalAttributesToApiChannel < ActiveRecord::Migration[6.1]
def change
add_column :channel_api, :additional_attributes, :jsonb, default: {}
end
end