mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-01 11:49:20 +02:00
13 lines
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
/**
|
|
* @var OTS_DB_MySQL $db
|
|
*/
|
|
|
|
$up = function () use ($db) {
|
|
$db->modifyColumn(TABLE_PREFIX . 'monsters', 'loot', 'text NOT NULL');
|
|
};
|
|
|
|
$down = function () {
|
|
// nothing to do
|
|
};
|