projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master' into 2272-setup-user-in-workbench
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20130105224618_rename_collection_created_by_client.rb
1
class RenameCollectionCreatedByClient < ActiveRecord::Migration
2
def up
3
rename_column :collections, :create_by_client, :created_by_client
4
end
5
6
def down
7
rename_column :collections, :created_by_client, :create_by_client
8
end
9
end