mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-01 19:59:21 +02:00
15 lines
252 B
PHP
15 lines
252 B
PHP
<?php
|
|
/**
|
|
* @var OTS_DB_MySQL $db
|
|
*/
|
|
|
|
// change size of spells.vocations
|
|
|
|
$up = function () use ($db) {
|
|
$db->modifyColumn(TABLE_PREFIX . 'spells', 'vocations', "VARCHAR(300) NOT NULL DEFAULT ''");
|
|
};
|
|
|
|
$down = function () {
|
|
// nothing to do here
|
|
};
|