mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-01 11:49:20 +02:00
17 lines
361 B
PHP
17 lines
361 B
PHP
<?php
|
|
/**
|
|
* @var OTS_DB_MySQL $db
|
|
*/
|
|
|
|
$up = function () use ($db) {
|
|
if ($db->hasColumn(TABLE_PREFIX . 'spells', 'cities')) {
|
|
$db->dropColumn(TABLE_PREFIX . 'spells', 'cities');
|
|
}
|
|
};
|
|
|
|
$up = function () use ($db) {
|
|
if ($db->hasColumn(TABLE_PREFIX . 'spells', 'cities')) {
|
|
$db->addColumn(TABLE_PREFIX . 'spells', 'cities', 'VARCHAR(32) NOT NULL,');
|
|
}
|
|
};
|