mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-29 10:12:34 +00:00
10 lines
240 B
Ruby
10 lines
240 B
Ruby
class AddIndexToEvent < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_index :events, :name
|
|
add_index :events, :created_at
|
|
add_index :events, :account_id
|
|
add_index :events, :inbox_id
|
|
add_index :events, :user_id
|
|
end
|
|
end
|