Ticket #4378: mysql_backend.path.binary.2.diff
| File mysql_backend.path.binary.2.diff, 0.7 kB (added by jackie.m@…, 22 months ago) |
|---|
-
mysql_backend.
old new 81 81 # Override the column type, as a text field cannot 82 82 # use auto_increment. 83 83 column.type = 'int' 84 coldefs.append(' `%s` %s' % (column.name, ctype)) 84 if column.name != 'path': 85 coldefs.append(' `%s` %s' % (column.name, ctype)) 86 else: 87 coldefs.append(' `%s` %s %s' % (column.name, ctype ,'BINARY')) 85 88 if len(table.key) > 0: 86 89 coldefs.append(' PRIMARY KEY (%s)' % 87 90 self._collist(table, table.key))
