projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '9783-cwl-error-invalid-dir' closes #9783
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20130226170000_remove_native_target_from_links.rb
1
class RemoveNativeTargetFromLinks < ActiveRecord::Migration
2
def up
3
remove_column :links, :native_target_id
4
remove_column :links, :native_target_type
5
end
6
def down
7
add_column :links, :native_target_id, :integer
8
add_column :links, :native_target_type, :string
9
end
10
end