view .svn/pristine/e4/e47cb90efa63229aa14e53e4ddde691e5e77e91c.svn-base @ 1149:719d597874fc redmine-2.2-integration

Fixes broken route in projects index.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Mon, 14 Jan 2013 17:45:54 +0000
parents cbb26bc654de
children
line wrap: on
line source
class AddMissingIndexesToDocuments < ActiveRecord::Migration
  def self.up
    add_index :documents, :category_id
  end

  def self.down
    remove_index :documents, :category_id
  end
end