38 lines
901 B
PHP
38 lines
901 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CreateQuestionsTable extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('questions', function (Blueprint $table) {
|
|
$table->increments('id');
|
|
$table->integer('test_id')->unsigned()->index();
|
|
$table->string('title');
|
|
$table->text('question');
|
|
$table->string('question_type');
|
|
$table->integer('correct_answers')->unsigned();
|
|
$table->integer('multiple_answers_question')->unsigned();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::drop('questions');
|
|
}
|
|
}
|