<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateQuizzesResultsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('quizzes_results', function (Blueprint $table) { $table->engine = 'InnoDB'; $table->increments('id'); $table->integer('quiz_id')->unsigned(); $table->integer('user_id')->unsigned(); $table->text('results')->nullable(); $table->integer('user_grade')->nullable(); $table->enum('status',['passed', 'failed', 'waiting']); $table->integer('created_at'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('quizzes_results'); } }