mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 22:56:04 +01:00
7 lines
165 B
Ruby
7 lines
165 B
Ruby
|
class AddIndexesToNotifications < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_index :notifications, :recipient_id
|
||
|
add_index :notifications, :new
|
||
|
end
|
||
|
end
|