8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20161223090712_add_output_name_to_container_requests.rb
1 class AddOutputNameToContainerRequests < ActiveRecord::Migration
2   def up
3     add_column :container_requests, :output_name, :string, :default => nil
4   end
5
6   def down
7     remove_column :container_requests, :output_name
8   end
9 end