--- mysql_backend.bak.py	2006-12-12 10:56:43.000000000 -0500
+++ mysql_backend.py	2006-12-12 12:02:14.000000000 -0500
@@ -76,12 +76,16 @@
         coldefs = []
         for column in table.columns:
             ctype = column.type
+	    print 'yo'
             if column.auto_increment:
                 ctype = 'INT UNSIGNED NOT NULL AUTO_INCREMENT'
                 # Override the column type, as a text field cannot
                 # use auto_increment.
                 column.type = 'int'
-            coldefs.append('    `%s` %s' % (column.name, ctype))
+	    if column.name != 'path':
+	        coldefs.append('    `%s` %s' % (column.name, ctype))
+	    else:
+	        coldefs.append('    `%s` %s %s' % (column.name, ctype ,'BINARY'))
         if len(table.key) > 0:
             coldefs.append('    PRIMARY KEY (%s)' %
                            self._collist(table, table.key))
