Sindbad~EG File Manager
<?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');
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists