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