관리-도구
편집 파일: 2021_09_30_053359_create_popup_notices_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePopupNoticesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('popup_notices', function (Blueprint $table) { $table->id(); $table->string('cover_image'); $table->string('status'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('popup_notices'); } }