. */ namespace Fisharebest\Webtrees\Schema; use Fisharebest\Webtrees\Database; use PDOException; /** * Upgrade the database schema from version 13 to version 14. */ class Migration13 implements MigrationInterface { /** * Upgrade to to the next version */ public function upgrade() { // Remove the i_isdead column try { Database::exec("ALTER TABLE `##individuals` DROP i_isdead"); } catch (PDOException $ex) { // Already done this? } } }