1
0
mirror of https://github.com/robonen/education-project.git synced 2026-03-20 02:44:31 +00:00

модуль Задания(почти готов)

This commit is contained in:
ashen-1-dev
2020-12-09 19:02:38 +07:00
parent 3c93886fef
commit ba578e9fdf
19 changed files with 842 additions and 302 deletions

View File

@@ -0,0 +1,45 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTasksTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tasks', function (Blueprint $table) {
$table->id();
$table->string('name',255);
$table->text('description')->nullable();
$table->dateTime('deadline')->nullable();
$table->unsignedInteger('teacher_id')->nullable();
$table->unsignedInteger('class_id')->nullable();
$table->timestamps();
$table->integer('subject_id');
$table->foreign('subject_id')->references('id')->on('subjects')
->onDelete('set null');
// $table->foreign('class_id')->references('id')->on('school_classes')
// ->onDelete('cascade');
// $table->foreign('teacher_id')->references('id')->on('teachers')
// ->onDelete('set null');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tasks');
}
}

View File

@@ -0,0 +1,41 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAnswersToTaskTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('answers_to_task', function (Blueprint $table) {
$table->id();
$table->text('description')->nullable();
$table->smallInteger('mark')->nullable();
$table->text('comment_by_teacher')->nullable();
$table->boolean('checked')->default('false');
$table->unsignedInteger('task_id');
$table->unsignedInteger('student_id');
$table->timestamps();
$table->foreign('task_id')->references('id')->on('tasks')
->onDelete('set null');
$table->foreign('student_id')->references('id')->on('students');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('answers_to_task');
}
}

View File

@@ -0,0 +1,43 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTaskFilesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('task_files', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->string('type');
$table->string('extension');
$table->boolean('add_by_teacher')->default('0');
$table->string('url', 400);
$table->timestamps();
$table->unsignedInteger('task_id');
$table->unsignedInteger('user_id');
$table->foreign('task_id')->references('id')->on('tasks')
->onDelete('cascade');
$table->foreign('user_id')->references('id')->on('tasks')
->onDelete('cascade');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('task_files');
}
}