Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20140428105831_add_notes_index_updated_at.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0589101af9385888703332b4b4675e6c11bba1b2 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddNotesIndexUpdatedAt < ActiveRecord::Migration
  def change
    add_index :notes, :updated_at
  end
end