Merge branch 'master' into 5556-collection-show-timeout
[arvados.git] / services / api / db / migrate / 20140811184643_collection_use_regular_uuids.rb
index 5c21c0bb2d2f090a92fa852cb38db484ed99f4ee..4f83ecab2c7ad6fc77d195c08a4748710d105e52 100644 (file)
@@ -3,7 +3,7 @@ class CollectionUseRegularUuids < ActiveRecord::Migration
     add_column :collections, :name, :string
     add_column :collections, :description, :string
     add_column :collections, :properties, :text
-    add_column :collections, :expire_time, :date
+    add_column :collections, :expires_at, :date
     remove_column :collections, :locator
 
     say_with_time "Step 1. Move manifest hashes into portable_data_hash field" do
@@ -175,6 +175,6 @@ where head_uuid like '________________________________+%' or tail_uuid like '___
   end
 
   def down
-    # Not gonna happen.
+    raise ActiveRecord::IrreversibleMigration, "Can't downmigrate changes to collections and links without potentially losing data."
   end
 end