debian-mirror-gitlab/db/migrate/20140428105831_add_notes_index_updated_at.rb

7 lines
134 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-01-03 12:48:30 +05:30
class AddNotesIndexUpdatedAt < ActiveRecord::Migration
2014-09-02 18:07:02 +05:30
def change
add_index :notes, :updated_at
end
end