id(); $table->string('filename'); $table->string('description_it', 300)->nullable(); $table->string('description_en', 300)->nullable(); $table->unsignedInteger('file_size'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('pictures'); } };