관리-도구
편집 파일: 2024_03_25_061615_create_levels_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( 'levels', function (Blueprint $table) { $table->id(); $table->string('name'); $table->integer('status')->default(1); $table->timestamps(); $table->softDeletes(); } ); } public function down(): void { Schema::dropIfExists('levels'); } };