Make myaac_config table columns bigger

This commit is contained in:
slawkens
2026-04-12 08:53:02 +02:00
parent f6c2e6e460
commit 2c62a97160
3 changed files with 13 additions and 3 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 = '2.0-dev';
const DATABASE_VERSION = 50;
const DATABASE_VERSION = 51;
const TABLE_PREFIX = 'myaac_';
define('START_TIME', microtime(true));
define('MYAAC_OS', stripos(PHP_OS, 'WIN') === 0 ? 'WINDOWS' : (strtoupper(PHP_OS) === 'DARWIN' ? 'MAC' : 'LINUX'));