12430: Drop non-matching files from output if output_glob specified.
[arvados.git] / services / api / db / migrate / 20240329173437_add_output_glob_to_containers.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class AddOutputGlobToContainers < ActiveRecord::Migration[7.0]
6   def change
7     add_column :containers, :output_glob, :text, default: '[]'
8     add_column :container_requests, :output_glob, :text, default: '[]'
9   end
10 end