4253: Users can manage their own repositories.
[arvados.git] / services / api / db / migrate / 20141208174553_descriptions_are_strings.rb
index b33a49a4463119b00e79d4548c0d3f6b5878625d..412b427c72e03a0d8ffb9063b6c9284ee33c13cf 100644 (file)
@@ -5,13 +5,15 @@ class DescriptionsAreStrings < ActiveRecord::Migration
 
   def up
     tables_with_description_column.each do |table|
-      change_column table.to_sym, :description, :string, :limit => 10000
+      change_column table.to_sym, :description, :string, :limit => 2**19
     end
   end
 
   def down
     tables_with_description_column.each do |table|
-      if table != 'collections'
+      if table == 'collections'
+        change_column table.to_sym, :description, :string # implicit limit 255
+      else
         change_column table.to_sym, :description, :text
       end
     end