관리-도구
편집 파일: 2021_09_08_051516_create_albums_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAlbumsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('albums', function (Blueprint $table) { $table->id(); $table->string('album_cover'); $table->string('album_title'); $table->string('title_slug'); $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('albums'); } }