🔥 **Remove Highscore and Bindle features**

- 🗑️ Deleted `Highscore` feature (Model, Controller, Factory, Tests, Routes, Migrations) and associated logic.
- 🗑️ Removed `BindleController` and its related test.
- 🧹 Cleaned up unused routes, database seeders, and localization references.
- 🚫 Deprecated inactive book rental guide component and associated views.
This commit is contained in:
HolgerHatGarKeineNode
2026-06-08 01:08:07 +02:00
parent 351dd87fa9
commit 3875e127e4
17 changed files with 3 additions and 731 deletions
@@ -1,35 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('highscores', function (Blueprint $table) {
$table->id();
$table->string('npub', 100);
$table->string('name')->nullable();
$table->unsignedBigInteger('satoshis');
$table->unsignedInteger('blocks');
$table->dateTime('achieved_at');
$table->timestamps();
$table->unique(['npub', 'achieved_at']);
$table->index('satoshis');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('highscores');
}
};