increments('id'); $table->string('path', 255)->default('')->comment('path'); $table->string('category')->default('')->comment('category: article, file'); $table->string('extension', 255)->default('')->comment('extension'); $table->integer('updated_at'); $table->integer('created_at'); $table->integer('deleted_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('files'); } }