]> git.openstreetmap.org Git - rails.git/blob - db/migrate/050_add_user_index_to_diary_comments.rb
fixes http://trac.openstreetmap.org/ticket/3645 . Can now pass in show_other_users...
[rails.git] / db / migrate / 050_add_user_index_to_diary_comments.rb
1 class AddUserIndexToDiaryComments < ActiveRecord::Migration
2   def self.up
3     add_index :diary_comments, [:user_id, :created_at], :name => "diary_comment_user_id_created_at_index"
4   end
5
6   def self.down
7     remove_index :diary_comments, :name => "diary_comment_user_id_created_at_index"
8   end
9 end