projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
3147: PySDK tests use mock>=1.0 and easier mock side_effect.
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20140826180337_remove_output_is_persistent_column.rb
1
class RemoveOutputIsPersistentColumn < ActiveRecord::Migration
2
def up
3
remove_column :jobs, :output_is_persistent
4
end
5
6
def down
7
add_column :jobs, :output_is_persistent, :boolean, null: false, default: false
8
end
9
end