mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 02:02:27 +00:00
Co-authored-by: Aswin Dev P.S <aswindevps@gmail.com> Co-authored-by: Sojan Jose <sojan@chatwoot.com>
12 lines
404 B
Ruby
12 lines
404 B
Ruby
class AddConversationParticipants < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table 'conversation_participants', force: :cascade do |t|
|
|
t.references :account, null: false
|
|
t.references :user, null: false
|
|
t.references :conversation, null: false
|
|
t.datetime 'created_at', precision: 6, null: false
|
|
t.datetime 'updated_at', precision: 6, null: false
|
|
end
|
|
end
|
|
end
|