<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSectionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sections', function (Blueprint $table) { $table->engine = 'InnoDB'; $table->increments('id'); $table->string('name', 64); $table->integer('section_group_id')->unsigned()->nullable(); $table->string('caption', 128); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('sections'); } }