Merge branch 'main' from workbench2.git
[arvados.git] / services / api / db / migrate / 20181005192222_add_container_runtime_token.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class AddContainerRuntimeToken < ActiveRecord::Migration[4.2]
6   def change
7     add_column :container_requests, :runtime_token, :text, :null => true
8     add_column :containers, :runtime_user_uuid, :text, :null => true
9     add_column :containers, :runtime_auth_scopes, :jsonb, :null => true
10   end
11 end