This commit is contained in:
hackerESQ
2025-01-28 21:16:51 -06:00
parent 7e1899d8ff
commit 1faa22897b
@@ -1,28 +0,0 @@
<?php
declare(strict_types=1);
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::table('supported_currencies', function (Blueprint $table) {
//
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('supported_currencies');
}
};