mirror of
https://github.com/slawkens/myaac.git
synced 2026-04-23 02:43:31 +02:00
11 lines
261 B
PHP
11 lines
261 B
PHP
<?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
|
|
};
|