id(); $table->string('name'); $table->string('file_name')->nullable(); $table->text('description')->nullable(); $table->string('url'); $table->integer('position'); $table->foreignId('admission_id')->constrained('admissions'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('documents'); } };