관리-도구
편집 파일: 2025_01_15_192720_create_payouts_table.php
<?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('payouts', function (Blueprint $table) { $table->id(); $table->string('payout_number'); $table->foreignId('user_id')->references('id')->on('users'); $table->decimal('amount', 10, 2); $table->enum('status', ['pending', 'approved']); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('payouts'); } };