projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
4062: update python testing to handle the multiple fixture object creation, similar...
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20140530200539_add_supplied_script_version.rb
1
class AddSuppliedScriptVersion < ActiveRecord::Migration
2
def up
3
add_column :jobs, :supplied_script_version, :string
4
end
5
6
def down
7
remove_column :jobs, :supplied_script_version, :string
8
end
9
end