projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '11517-indexes'
[arvados.git]
/
services
/
api
/
db
/
migrate
/
20150312151136_change_collection_expires_at_to_datetime.rb
1
class ChangeCollectionExpiresAtToDatetime < ActiveRecord::Migration
2
def up
3
change_column :collections, :expires_at, :datetime
4
end
5
6
def down
7
change_column :collections, :expires_at, :date
8
end
9
end