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