Revert back to latin1 for default mysql db charset

utf8 as a default prevents the database from being created (MyISAM does
not support indexes with more than 1000 bytes).
The 'nova db sync' command later upgrades the database/tables to utf8
and InnoDB.
This commit is contained in:
François Charlier 2012-04-26 18:26:12 +02:00
parent c946ae4434
commit 3d5c3f7480
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class nova::db::mysql(
user => $user,
password => $password,
host => $host,
charset => 'utf8',
charset => 'latin1',
# I may want to inject some sql
require => Class['mysql::server'],
}