id(); $table->string('codigo', 16); $table->string('denominacion'); $table->string('adjunto'); $table->foreignId('id_user') ->constrained('users'); $table->foreignId('id_plan') ->constrained('plans') ->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('evidencias'); } };