20130713111657_add_queries_options.rb
9 lines
| 165 B
| text/x-ruby
|
RubyLexer
|
r11790 | class AddQueriesOptions < ActiveRecord::Migration | ||
def up | ||||
add_column :queries, :options, :text | ||||
end | ||||
def down | ||||
remove_column :queries, :options | ||||
end | ||||
end | ||||