10223: Added output_name column to container_request. When being finalized, if output...
[arvados.git] / services / api / db / migrate / 20161019171346_add_use_existing_to_container_requests.rb
1 class AddUseExistingToContainerRequests < ActiveRecord::Migration
2   def up
3     add_column :container_requests, :use_existing, :boolean, :default => true
4   end
5
6   def down
7     remove_column :container_requests, :use_existing
8   end
9 end