Created
July 11, 2013 07:48
-
-
Save venkatesh22/5973400 to your computer and use it in GitHub Desktop.
(1267, "Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '='")
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ manage.py shell | |
>>> from django.db import connection | |
>>> cursor = connection.cursor() | |
>>> cursor.execute('SHOW TABLES') | |
>>> results=[] | |
>>> for row in cursor.fetchall(): results.append(row) | |
>>> for row in results: cursor.execute('ALTER TABLE %s CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;' % (row[0])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment