14260: Migration adding runtime_token, runtime_user_uuid, runtime_auth_scopes
[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
5     add_column :containers, :runtime_auth_scopes, :jsonb
6   end
7 end