id(); $table->string('codigo', 11); $table->string('nombre'); $table->string('oportunidad_plan'); $table->string('semestre_ejecucion', 7); $table->integer('avance'); $table->integer('duracion'); $table->string('estado', 30); $table->boolean('evaluacion_eficacia'); $table->foreignId('id_estandar') ->constrained('estandars'); $table->foreignId('id_user') ->constrained('users'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('plans'); } };