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