관리-도구
편집 파일: 2024_07_28_105912_create_news_sections_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNewsSectionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('news_sections', function (Blueprint $table) { $table->id(); $table->string('feature_img')->nullable(); $table->string('title'); $table->string('slug')->nullable(); $table->longText('content'); $table->date('written_on'); $table->string('external_link')->nullable(); $table->boolean('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('news_sections'); } }