관리-도구
편집 파일: 2024_08_12_131857_create_payment_methods_table.php
<?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( 'payment_methods', function (Blueprint $table) { $table->id(); $table->string('method_name'); $table->string('logo'); $table->string('status')->default(0); $table->timestamps(); } ); } public function down(): void { Schema::dropIfExists('payment_methods'); } };