010bfc56e1
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12020 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
165 B
Ruby
10 lines
165 B
Ruby
class AddQueriesOptions < ActiveRecord::Migration
|
|
def up
|
|
add_column :queries, :options, :text
|
|
end
|
|
|
|
def down
|
|
remove_column :queries, :options
|
|
end
|
|
end
|