<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUploadsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('uploads', function (Blueprint $table) { $table->id(); $table->string('name'); $table->string('path'); $table->string('extension'); $table->string('mime_type'); $table->string('parent_type'); $table->string('descriptionImg')->nullable(); $table->string('caption')->nullable(); $table->enum('type',['featured_image','gallery_image']); $table->morphs('uploadable'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('uploads'); } }