show-exam

This commit is contained in:
xiaomlove
2021-04-25 21:28:58 +08:00
parent 512af7511d
commit 7cfde3f95b
13 changed files with 206 additions and 17 deletions

View File

@@ -15,9 +15,11 @@ class CreateExamProgressTable extends Migration
{
Schema::create('exam_progress', function (Blueprint $table) {
$table->id();
$table->integer('exam_user_id')->index();
$table->integer('exam_id')->index();
$table->integer('uid')->index();
$table->integer('type_id');
$table->integer('torrent_id');
$table->integer('index');
$table->integer('value');
$table->timestamps();
$table->index('created_at');