Add 'sdk/java-v2/' from commit '55f103e336ca9fb8bf1720d2ef4ee8dd4e221118'
[arvados.git] / services / api / db / migrate / 20181005192222_add_container_runtime_token.rb
1 class AddContainerRuntimeToken < ActiveRecord::Migration
2   def change
3     add_column :container_requests, :runtime_token, :text, :null => true
4     add_column :containers, :runtime_user_uuid, :text, :null => true
5     add_column :containers, :runtime_auth_scopes, :jsonb, :null => true
6   end
7 end