increments('id'); $table->unsignedInteger('fileable_id'); $table->string('fileable_type', 60); $table->tinyInteger('type_id')->unsigned()->nullable(); $table->string('filename', 60); $table->string('title', 60); $table->string('description')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('files'); } }