3072: add an empty collection in db seeds
[arvados.git] / services / api / db / migrate / 20140714184006_empty_collection.rb
1 class EmptyCollection < ActiveRecord::Migration
2   include CurrentApiClient
3
4   def up
5     empty_collection
6   end
7
8   def down
9     act_as_system_user do
10       empty_collection.destroy
11     end
12   end
13 end