<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('funding_fees', function (Blueprint $table) {
$table->id();
$table->decimal('fee', 10, 2)->nullable();
$table->string('biller');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('funding_fees');
}
};