projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
17810: Fix S3 signature verification.
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20170330012505_add_output_ttl_to_container_requests.rb
1
# Copyright (C) The Arvados Authors. All rights reserved.
2
#
3
# SPDX-License-Identifier: AGPL-3.0
4
5
class AddOutputTtlToContainerRequests < ActiveRecord::Migration[4.2]
6
def change
7
add_column :container_requests, :output_ttl, :integer, default: 0, null: false
8
end
9
end