string('url')->nullable()->after('name'); $table->string('name_url')->nullable()->after('url'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('regions', function (Blueprint $table) { $table->dropColumn('url'); $table->dropColumn('name_url'); }); } };