id(); $table->text('descripcion'); $table->bigInteger('valor'); $table->text('tipo_documento'); $table->foreignId('turno_id')->constrained('turnos')->cascadeOnDelete(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('documentos'); } };