schema: Change character set to utf8mb4 (support for Emojis in Menus/Pages/News/Forum etc.)

This commit is contained in:
slawkens
2024-11-22 15:52:54 +01:00
parent 3f6ff3a332
commit 27c44f1bdf
3 changed files with 56 additions and 21 deletions

View File

@@ -27,7 +27,7 @@ if (version_compare(phpversion(), '8.1', '<')) die('PHP version 8.1 or higher is
const MYAAC = true;
const MYAAC_VERSION = '1.0-RC.2';
const DATABASE_VERSION = 40;
const DATABASE_VERSION = 41;
const TABLE_PREFIX = 'myaac_';
define('START_TIME', microtime(true));
define('MYAAC_OS', stripos(PHP_OS, 'WIN') === 0 ? 'WINDOWS' : (strtoupper(PHP_OS) === 'DARWIN' ? 'MAC' : 'LINUX'));