2022-07-09 03:09:04 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
return new class extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2022-10-25 06:35:22 +00:00
|
|
|
|
|
|
|
//hacer null todo menos codigo, user, estandar
|
|
|
|
|
|
|
|
|
2022-07-09 03:09:04 +00:00
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('plans', function (Blueprint $table) {
|
|
|
|
$table->id();
|
|
|
|
$table->string('codigo', 11);
|
2022-10-25 06:35:22 +00:00
|
|
|
$table->string('nombre', 255)->nullable();
|
2022-08-18 06:41:10 +00:00
|
|
|
$table->string('oportunidad_plan')->nullable();
|
|
|
|
$table->string('semestre_ejecucion', 8)->nullable();
|
|
|
|
$table->integer('avance')->nullable();
|
2022-07-09 03:09:04 +00:00
|
|
|
$table->integer('duracion');
|
2022-08-18 06:41:10 +00:00
|
|
|
$table->string('estado', 30)->nullable();
|
2022-07-27 05:42:33 +00:00
|
|
|
$table->boolean('evaluacion_eficacia');
|
2022-07-09 03:09:04 +00:00
|
|
|
$table->foreignId('id_estandar')
|
2022-10-25 06:35:22 +00:00
|
|
|
->constrained('estandars');
|
2022-07-09 03:09:04 +00:00
|
|
|
$table->foreignId('id_user')
|
2022-10-25 06:35:22 +00:00
|
|
|
->constrained('users');
|
2022-08-18 06:41:10 +00:00
|
|
|
$table->unique(['codigo', 'id_estandar']);
|
2022-08-02 04:44:21 +00:00
|
|
|
$table->timestamps();
|
2022-07-09 03:09:04 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('plans');
|
|
|
|
}
|
|
|
|
};
|