mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:29:52 +01:00
6 lines
165 B
Ruby
6 lines
165 B
Ruby
class AddIndexesToNotifications < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_index :notifications, :recipient_id
|
|
add_index :notifications, :new
|
|
end
|
|
end
|