projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
11103: Omit mounts from container_requests and definition from workflows for full...
[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