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

10
system/migrations/51.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
$up = function () use ($db) {
$db->modifyColumn(TABLE_PREFIX . 'config', 'name', "varchar(255) NOT NULL");
$db->modifyColumn(TABLE_PREFIX . 'config', 'value', "varchar(10000) NOT NULL");
};
$down = function () {
// nothing to do, to not lose data
};