9 lines
297 B
Ruby
9 lines
297 B
Ruby
class AddUserIndexToDiaryComments < ActiveRecord::Migration
|
|
def self.up
|
|
add_index :diary_comments, [:user_id, :created_at], :name => "diary_comment_user_id_created_at_index"
|
|
end
|
|
|
|
def self.down
|
|
remove_index :diary_comments, :name => "diary_comment_user_id_created_at_index"
|
|
end
|
|
end
|