. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Schema; /** * Upgrade the database schema from version 17 to version 18 (webtrees 1.3.0). */ class Migration17 implements MigrationInterface { /** * Upgrade to the next version. * * @return void */ public function upgrade(): void { // Originally, this created wt_site_access_rule, // however this table now gets deleted in Migration37. } }