Skip to content

Commit

Permalink
Fix #230 - Set default DB_CHARSET to utf8mb4
Browse files Browse the repository at this point in the history
  • Loading branch information
swalkinshaw committed Jan 17, 2016
1 parent 87ab3fd commit 0d37df9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### HEAD

* Set default `DB_CHARSET` to `utf8mb4`

### 1.4.7: 2016-01-07

* Update to WordPress 4.4.1
Expand Down
2 changes: 1 addition & 1 deletion config/application.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
define('DB_USER', getenv('DB_USER'));
define('DB_PASSWORD', getenv('DB_PASSWORD'));
define('DB_HOST', getenv('DB_HOST') ?: 'localhost');
define('DB_CHARSET', 'utf8');
define('DB_CHARSET', 'utf8mb4');
define('DB_COLLATE', '');
$table_prefix = getenv('DB_PREFIX') ?: 'wp_';

Expand Down

0 comments on commit 0d37df9

Please sign in to comment.