. */ declare(strict_types=1); 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. * * @return void */ public function upgrade(): void { // Remove the i_isdead column try { Database::exec("ALTER TABLE `##individuals` DROP i_isdead"); } catch (PDOException $ex) { // Already done this? } } }