mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 01:36:23 +01: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,');
 | 
						|
	}
 | 
						|
};
 |