id(); $table->string('name', 255); $table->string('file_name')->nullable(); $table->text('description')->nullable(); $table->string('url', 255); $table->smallInteger('position'); $table->foreignId('admission_id')->constrained('admissions'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('documents'); } };