. */ use Fisharebest\Webtrees\Database; /** * Class Migration19 - upgrade the database schema from version 19 to version 20. */ class Migration19 implements MigrationInterface { /** {@inheritDoc} */ public function upgrade() { // Fix some broken data caused by a bug Database::exec("UPDATE `##default_resn` SET xref = NULL WHERE xref = ''"); Database::exec("UPDATE `##default_resn` SET tag_type = NULL WHERE tag_type = ''"); } }