관리-도구
편집 파일: 2020_07_30_074942_create_media_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateMediaTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('media', function (Blueprint $table) { $table->id(); $table->string('filename'); $table->string('file_path'); $table->string('file_type'); $table->string('file_size'); $table->string('file_extension'); $table->bigInteger('user_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('media'); } }