17004: Add migration
[arvados.git] / services / api / db / migrate / 20220505112900_add_output_properties.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class AddOutputProperties < ActiveRecord::Migration[5.2]
6   def change
7     add_column :container_requests, :output_properties, :jsonb, default: {}
8     add_column :containers, :output_properties, :jsonb, default: {}
9   end
10 end