fix nav bar highlighting

This commit is contained in:
albert
2013-02-20 22:59:31 -05:00
parent 65b45e46c2
commit ed9e0930d6
3 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
class AddIndexCreatedAtOnUserFeedback < ActiveRecord::Migration
def up
add_index :user_feedback, :created_at
end
def down
remove_index :user_feedback, :created_at
end
end