projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
4823: Add new tests for BufferBlock, BlockManager, saving, updating. Stylistic
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20140601022548_remove_name_from_collections.rb
1
class RemoveNameFromCollections < ActiveRecord::Migration
2
def up
3
remove_column :collections, :name
4
end
5
6
def down
7
add_column :collections, :name, :string
8
end
9
end