<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateParticipantsAnswersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('participants_answers', function (Blueprint $table) {
$table->increments('id');
$table->integer('participant_id')->unsigned()->index();
$table->integer('question_id')->unsigned()->index();
$table->integer('answer_id')->unsigned()->index();
$table->string('answer');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('participants_answers_table');
}
}