2024-09-05 15:34:49 +02:00

11 lines
281 B
PHP

<?php
// Increase size of page in myaac_visitors table
$up = function () use ($db) {
$db->exec('ALTER TABLE `' . TABLE_PREFIX . "visitors` MODIFY `page` VARCHAR(2048) NOT NULL;");
};
$down = function () {
// nothing to be done, as we have just extended the size of a column
};