Author: sevein
Date: Thu Jul 12 16:46:59 2012
New Revision: 11916

Log:
Do not use variables because they might not be there in the future

Modified:
   trunk/lib/task/migrate/arUpgrader120.class.php

Modified: trunk/lib/task/migrate/arUpgrader120.class.php
==============================================================================
--- trunk/lib/task/migrate/arUpgrader120.class.php      Thu Jul 12 00:08:03 
2012        (r11915)
+++ trunk/lib/task/migrate/arUpgrader120.class.php      Thu Jul 12 16:46:59 
2012        (r11916)
@@ -248,7 +248,7 @@
 
       // Increase width of digital_object.mime_type to 255 chars
       case 83:
-        $sql = 'ALTER TABLE '.QubitDigitalObject::TABLE_NAME.' MODIFY 
`'.QubitDigitalObject::MIME_TYPE.'` VARCHAR(255);';
+        $sql = 'ALTER TABLE '.QubitDigitalObject::TABLE_NAME.' MODIFY 
`mime_type` VARCHAR(255);';
         QubitPdo::modify($sql);
 
         break;

-- 
You received this message because you are subscribed to the Google Groups 
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/qubit-commits?hl=en.

Reply via email to