관리-도구
편집 파일: 2021_09_07_063000_create_news_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNewsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('news', function (Blueprint $table) { $table->id(); $table->string('cover_image')->nullable(); $table->string('title'); $table->string('slug'); $table->string('descriptive_title'); $table->longText('content'); $table->date('written_on'); $table->string('author'); $table->integer('view_count'); $table->boolean('news_blogs'); $table->string('meta_title')->nullable(); $table->string('meta_keywords')->nullable(); $table->longText('meta_description')->nullable(); $table->string('og_image')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('news'); } }