uuid('tokenable_id')->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('personal_access_tokens', function (Blueprint $table) { // Replace tokenable_id to uuid $table->bigInteger('tokenable_id')->unsigned()->change(); }); } };