관리-도구
편집 파일: 2022_08_28_072552_create_report_quarterlies_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateReportQuarterliesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('report_quarterlies', function (Blueprint $table) { $table->id(); $table->integer('user_id'); $table->longText('title'); $table->string('slug'); $table->string('date'); $table->string('file')->nullable(); $table->mediumText('meta_title')->nullable(); $table->longText('meta_keywords')->nullable(); $table->longText('meta_description')->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('report_quarterlies'); } }