0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-21 04:43:34 +00:00
salesagility_SuiteCRM/install/suite_install/collations.php
2019-09-03 12:11:12 +10:00

15 lines
275 B
PHP

<?php
$collations = array(
'mysql' =>
array(
array(
'name' => 'utf8_general_ci',
'charset' => 'utf8',
),
array(
'name' => 'utf8mb4_general_ci',
'charset' => 'utf8mb4',
),
),
);