view .svn/pristine/3f/3fac3fc235a53c2e2d4d021dffb9a965b1506411.svn-base @ 1295:622f24f53b42 redmine-2.3

Update to Redmine SVN revision 11972 on 2.3-stable branch
author Chris Cannam
date Fri, 14 Jun 2013 09:02:21 +0100
parents
children
line wrap: on
line source
class AddQueriesType < ActiveRecord::Migration
  def up
    add_column :queries, :type, :string
  end

  def down
    remove_column :queries, :type
  end
end