comparison .svn/pristine/1a/1afc6535efb2815b924fdefa8ab10dacd7ba3c18.svn-base @ 1464:261b3d9a4903 redmine-2.4

Update to Redmine 2.4 branch rev 12663
author Chris Cannam
date Tue, 14 Jan 2014 14:37:42 +0000
parents
children
comparison
equal deleted inserted replaced
1296:038ba2d95de8 1464:261b3d9a4903
1 class AddQueriesOptions < ActiveRecord::Migration
2 def up
3 add_column :queries, :options, :text
4 end
5
6 def down
7 remove_column :queries, :options
8 end
9 end