annotate .svn/pristine/8d/8d03cc496803f09b2d6947d04fa8cd315da58e77.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 038ba2d95de8
children
rev   line source
Chris@1296 1 class AddRepositoriesIsDefault < ActiveRecord::Migration
Chris@1296 2 def self.up
Chris@1296 3 add_column :repositories, :is_default, :boolean, :default => false
Chris@1296 4 end
Chris@1296 5
Chris@1296 6 def self.down
Chris@1296 7 remove_column :repositories, :is_default
Chris@1296 8 end
Chris@1296 9 end