annotate .svn/pristine/d4/d45b2dee9e6069640c900ea2aa339df5c894b306.svn-base @ 1322:596e34bffcc7 redmine-2.2-integration

Temporarily remove "Mature projects", it doesn't work well enough. Add Search Projects link
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Wed, 19 Jun 2013 16:18:23 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 class AddQueriesSortCriteria < ActiveRecord::Migration
Chris@909 2 def self.up
Chris@909 3 add_column :queries, :sort_criteria, :text
Chris@909 4 end
Chris@909 5
Chris@909 6 def self.down
Chris@909 7 remove_column :queries, :sort_criteria
Chris@909 8 end
Chris@909 9 end