관리-도구
편집 파일: 2023_11_29_095126_create_coupons_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('coupons', function (Blueprint $table) { $table->id(); $table->integer('author_id')->default(0); $table->string('coupon_code'); $table->decimal('offer_percentage', 8, 2); $table->string('expired_date'); $table->enum('status', ['active', 'inactive'])->default('active'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('coupons'); } };