mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-07-27 23:29:19 +08:00
Signed-off-by: Dillon-Brown <dillon.brown@salesagility.com> # Conflicts: # public/legacy/suitecrm_version.php
15 lines
310 B
PHP
15 lines
310 B
PHP
<?php
|
|
|
|
$collations = array(
|
|
'mysql' =>
|
|
array(
|
|
array(
|
|
'name' => 'utf8mb4_general_ci',
|
|
'charset' => 'utf8mb4',
|
|
),
|
|
array(
|
|
'name' => 'utf8_general_ci',
|
|
'charset' => 'utf8',
|
|
),
|
|
),
|
|
);
|