···11+<?php
22+33+// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0.
44+// See the LICENCE file in the repository root for full licence text.
55+66+declare(strict_types=1);
77+88+use Illuminate\Database\Migrations\Migration;
99+use Illuminate\Database\Schema\Blueprint;
1010+use Illuminate\Support\Facades\Schema;
1111+1212+return new class extends Migration
1313+{
1414+ /**
1515+ * Run the migrations.
1616+ */
1717+ public function up(): void
1818+ {
1919+ Schema::table('osu_banchostats', function (Blueprint $table) {
2020+ $table->unsignedMediumInteger('users_lazer')->after('users_osu');
2121+ });
2222+ }
2323+2424+ /**
2525+ * Reverse the migrations.
2626+ */
2727+ public function down(): void
2828+ {
2929+ Schema::table('osu_banchostats', function (Blueprint $table) {
3030+ $table->dropColumn('users_lazer');
3131+ });
3232+ }
3333+};