Answers
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php namespace GermanAirlinesVa\Schooling\Updates;
|
||||
|
||||
use Schema;
|
||||
use October\Rain\Database\Updates\Migration;
|
||||
|
||||
class BuilderTableCreateExamAnswers extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::connection('germanairlinesva_schooling')->create('exam_answers', function ($table) {
|
||||
$table->engine = 'InnoDB';
|
||||
$table->bigIncrements('id')->unsigned();
|
||||
$table->bigInteger('exam_question_id')->unsigned();
|
||||
$table
|
||||
->foreign('exam_question_id')
|
||||
->references('id')
|
||||
->on('exam_questions');
|
||||
$table->text('text');
|
||||
$table->boolean('is_correct');
|
||||
});
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
Schema::connection('germanairlinesva_schooling')->dropIfExists('exam_answers');
|
||||
}
|
||||
}
|
||||
@@ -9,3 +9,5 @@
|
||||
- builder_table_create_member_ranks.php
|
||||
- 'Created table exam_questions'
|
||||
- builder_table_create_exam_questions.php
|
||||
- 'Created table exam_answers'
|
||||
- builder_table_create_exam_answers.php
|
||||
|
||||
Reference in New Issue
Block a user