Sindbad~EG File Manager
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateBoletinsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('boletins', function (Blueprint $table) {
$table->id();
$table->string('titulo');
$table->longText('boletin');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('boletins');
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists