Skip to content

Commit

Permalink
mbleigh#623: added manual column alter suggestion to fix special char…
Browse files Browse the repository at this point in the history
…acters in tags (MySql only)
  • Loading branch information
rikettsie committed Feb 26, 2015
1 parent a13c7a2 commit 21a22e0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ Review the generated migrations then migrate :
rake db:migrate
```

MySql users should also apply a column change to get special characters
work correctly for tag names, see [issue #623](https://github.com/mbleigh/acts-as-taggable-on/issues/623).
Execute the following command in the MySql console:

```shell
USE my_wonderful_app_db;
ALTER TABLE tags MODIFY name VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_bin;
```

#### Upgrading

see [UPGRADING](UPGRADING.md)
Expand Down

0 comments on commit 21a22e0

Please sign in to comment.