From: Aron Roberts Date: Mon, 11 Jan 2010 21:04:36 +0000 (+0000) Subject: CSPACE-722: Configured MySQL database creation script to configure the 'nuxeo' and... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=fbba2bb6158da1f4595814c4856ba3fdf9093762;p=tmp%2Fjakarta-migration.git CSPACE-722: Configured MySQL database creation script to configure the 'nuxeo' and 'cspace' databases to default to using the Unicode UTF-8 character set. --- diff --git a/src/main/resources/db/mysql/init_db.sql b/src/main/resources/db/mysql/init_db.sql index 2b3fd6a8c..3e58963ef 100644 --- a/src/main/resources/db/mysql/init_db.sql +++ b/src/main/resources/db/mysql/init_db.sql @@ -20,13 +20,13 @@ CREATE database jbossdb; -- recreate cspace database -- DROP database IF EXISTS cspace; -CREATE database cspace; +CREATE database cspace DEFAULT CHARACTER SET utf8; -- -- recreate nuxeo database -- DROP database IF EXISTS nuxeo; -CREATE database nuxeo; +CREATE database nuxeo DEFAULT CHARACTER SET utf8; --