Remove torrents system

This commit is contained in:
2025-09-22 13:34:52 +02:00
parent c0a22e875c
commit bc193c7141
8 changed files with 24 additions and 130 deletions

View File

@@ -0,0 +1,24 @@
<?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::dropIfExists('torrents');
}
/**
* Reverse the migrations.
*/
public function down(): void
{
// Not reversible
}
};