관리-도구
편집 파일: 2022_08_09_093433_create_index_menus_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateIndexMenusTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('index_menus', function (Blueprint $table) { $table->id(); $table->longText('slogan_index_abot'); $table->longText('recent_update'); $table->longText('news_events'); $table->longText('media_update'); $table->longText('download'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('index_menus'); } }