id(); $table->timestamps(); $table->string('descripcion'); $table->foreignId('id_plan') ->constrained('plans') ->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('observaciones'); } };