Create 2025_12_28_000001_add_multi_currency_support.php

This commit is contained in:
hackerESQ
2025-01-28 19:34:49 -06:00
parent 9bd406c5b1
commit 7694d8a241
@@ -0,0 +1,28 @@
<?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');
}
};