mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 10:29:53 +01:00
8 lines
196 B
Ruby
8 lines
196 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIndexesToNotifications < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_index :notifications, :recipient_id
|
|
add_index :notifications, :new
|
|
end
|
|
end
|