8784: Fix test for latest firefox.
[arvados.git] / services / api / db / migrate / 20160926194129_add_container_count.rb
1 class AddContainerCount < ActiveRecord::Migration
2   def up
3     add_column :container_requests, :container_count, :int, :default => 0
4   end
5
6   def down
7     remove_column :container_requests, :container_count
8   end
9 end