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