Skip to content

Commit

Permalink
Merge pull request #6066 from SamvelG/patch-1
Browse files Browse the repository at this point in the history
Fixes MySQL column size too large issue
  • Loading branch information
alanhartless committed Jan 15, 2019
2 parents e0b8cae + 3525802 commit 2d5a95d
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions app/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,13 +204,18 @@ function ($v) {

//Doctrine Configuration
$dbalSettings = [
'driver' => '%mautic.db_driver%',
'host' => '%mautic.db_host%',
'port' => '%mautic.db_port%',
'dbname' => '%mautic.db_name%',
'user' => '%mautic.db_user%',
'password' => '%mautic.db_password%',
'charset' => 'UTF8',
'driver' => '%mautic.db_driver%',
'host' => '%mautic.db_host%',
'port' => '%mautic.db_port%',
'dbname' => '%mautic.db_name%',
'user' => '%mautic.db_user%',
'password' => '%mautic.db_password%',
'charset' => 'UTF8',
'default_table_options' => [
'charset' => 'utf8',
'collate' => 'utf8_unicode_ci',
'row_format' => 'DYNAMIC',
],
'types' => [
'array' => 'Mautic\CoreBundle\Doctrine\Type\ArrayType',
'datetime' => 'Mautic\CoreBundle\Doctrine\Type\UTCDateTimeType',
Expand Down

0 comments on commit 2d5a95d

Please sign in to comment.