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