관리-도구
편집 파일: 2024_05_15_050106_create_course_bundles_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( 'course_bundles', function (Blueprint $table) { $table->id(); $table->string('title'); $table->string('slug'); $table->decimal('price'); $table->string('thumbnail')->nullable(); $table->text('details')->nullable(); $table->integer('status')->default(0); $table->softDeletes(); $table->timestamps(); } ); } public function down(): void { Schema::dropIfExists('course_bundles'); } };