]> git.arvados.org - arvados.git/blob - services/api/db/migrate/20150312151136_change_collection_expires_at_to_datetime.rb
10216: Added use_existing field to Container Request. When false and CR is committed...
[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