projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '3072-empty-collection-bugfix'
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20140714184006_empty_collection.rb
1
class EmptyCollection < ActiveRecord::Migration
2
include CurrentApiClient
3
4
def up
5
act_as_system_user do
6
empty_collection
7
end
8
end
9
10
def down
11
# do nothing when migrating down (having the empty collection
12
# and a permission link for it is harmless)
13
end
14
end