id(); $table->string('name')->unique(); $table->string('label')->nullable(); $table->string('mime'); $table->longText('data'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('document_assets'); } };