mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-02 20:29:20 +02:00
11 lines
281 B
PHP
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
|
|
};
|