chore: Conversation custom attribute APIs (#3024)

This commit is contained in:
Muhsin Keloth
2021-09-22 10:46:48 +05:30
committed by GitHub
parent dddab0bbce
commit 0c24df96a8
9 changed files with 56 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddCustomAttributesToConversations < ActiveRecord::Migration[6.1]
def change
add_column :conversations, :custom_attributes, :jsonb, default: {}
end
end