. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Schema; use Illuminate\Database\Capsule\Manager as DB; use Illuminate\Database\Schema\Blueprint; /** * Upgrade the database schema from version 41 to version 42. */ class Migration41 implements MigrationInterface { /** * Upgrade to to the next version * * @return void */ public function upgrade(): void { DB::schema()->table('module', static function (Blueprint $table): void { $table->integer('footer_order')->nullable()->after('sidebar_order'); }); } }