Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
7 lines
198 B
Ruby
7 lines
198 B
Ruby
class AddDisplayIdToConversations < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :conversations, :display_id, :integer
|
|
add_index :conversations, [:account_id, :display_id]
|
|
end
|
|
end
|