Mercurial > hg > soundsoftware-site
view .svn/pristine/c1/c1223f031fa2bf3b78639a2a5da945e7a735cdcd.svn-base @ 1427:2599a11ef11a biblio_alt_search_auth
Fixes Bug #762 - was replacing the whole content of the span, including the tag itself (which was being used as the "anchor").
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Tue, 08 Oct 2013 17:06:37 +0100 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class AddMissingIndexesToIssues < ActiveRecord::Migration def self.up add_index :issues, :status_id add_index :issues, :category_id add_index :issues, :assigned_to_id add_index :issues, :fixed_version_id add_index :issues, :tracker_id add_index :issues, :priority_id add_index :issues, :author_id end def self.down remove_index :issues, :status_id remove_index :issues, :category_id remove_index :issues, :assigned_to_id remove_index :issues, :fixed_version_id remove_index :issues, :tracker_id remove_index :issues, :priority_id remove_index :issues, :author_id end end