Core/Phases: Update transport visibility when changing phases

This commit is contained in:
Subv
2014-06-03 13:08:54 -05:00
parent 558642b26e
commit 74be070d1c
10 changed files with 56 additions and 9 deletions

View File

@@ -24,4 +24,8 @@ CREATE TABLE `phase_info` (
`terrainswapmap` int(10) unsigned NOT NULL DEFAULT '0',
`comment` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
ALTER TABLE `transports`
ADD COLUMN `phaseid` INT(10) NOT NULL DEFAULT 0 AFTER `name`,
ADD COLUMN `phasegroup` INT(10) NOT NULL DEFAULT 0 AFTER `phaseid`;