unsa-pis-be/database/migrations/2022_07_07_012118_create_pl...

45 lines
1.2 KiB
PHP
Raw Normal View History

<?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
*/
public function up()
{
Schema::create('plans', function (Blueprint $table) {
$table->id();
$table->string('codigo', 11);
$table->string('nombre',255)->nullable();
$table->string('oportunidad_plan')->nullable();
$table->string('semestre_ejecucion', 8)->nullable();
$table->integer('avance')->nullable();
$table->integer('duracion');
$table->string('estado', 30)->nullable();
2022-07-27 05:42:33 +00:00
$table->boolean('evaluacion_eficacia');
$table->foreignId('id_estandar')
->constrained('estandars');
$table->foreignId('id_user')
->constrained('users');
$table->unique(['codigo', 'id_estandar']);
2022-08-02 04:44:21 +00:00
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('plans');
}
};