Make players.comment and guilds.description VARCHAR

This commit is contained in:
slawkens
2025-01-22 21:44:58 +01:00
parent 669c447fca
commit a45ceab83a
4 changed files with 34 additions and 4 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.1';
const DATABASE_VERSION = 42;
const DATABASE_VERSION = 43;
const TABLE_PREFIX = 'myaac_';
define('START_TIME', microtime(true));
define('MYAAC_OS', stripos(PHP_OS, 'WIN') === 0 ? 'WINDOWS' : (strtoupper(PHP_OS) === 'DARWIN' ? 'MAC' : 'LINUX'));