File: /var/www/html/edd.sumar.com.py/database/migrations/2021_05_28_203046_create_evaluacions_table.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateEvaluacionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('evaluacions', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->string('eva_nombre');
$table->longText('eva_descripcion');
$table->boolean('eva_estado')->default(1);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('evaluacions');
}
}