[Sqlalchemy-tickets] Issue #3085: Index mysql_length does not work with column ames with spaces (zz
Brought to you by:
zzzeek
|
From: Iuri de S. <iss...@bi...> - 2014-06-18 14:15:02
|
New issue 3085: Index mysql_length does not work with column ames with spaces https://bitbucket.org/zzzeek/sqlalchemy/issue/3085/index-mysql_length-does-not-work-with Iuri de Silvio: I have a `Column 1` in MySQL database. I tried to define an index with: mysql_length={'Column 1': 255} It doesn't work. I have to add backticks to column name: mysql_length={'`Column 1`': 255} |