comment('Records information in the database about files tracked by the system, linking them to the local filesystem.'); $table->bigIncrements('file_id'); $table->string('path', 255); $table->string('mimetype', 255); }); } /** * Reverse the migration. */ public function down(): void { Schema::drop('files'); } }