exam-table

This commit is contained in:
xiaomlove
2021-04-23 20:05:39 +08:00
parent ba7e5030e9
commit a0c7a7e5dc
8 changed files with 271 additions and 136 deletions
@@ -17,10 +17,10 @@ class CreateExamsTable extends Migration
$table->id();
$table->string('name');
$table->text('description')->nullable();
$table->dateTime('begin');
$table->dateTime('end');
$table->text('filters');
$table->text('requires');
$table->dateTime('begin')->nullable();
$table->dateTime('end')->nullable();
$table->text('filters')->nullable();
$table->text('indexes');
$table->tinyInteger('status')->default(0);
$table->timestamps();
});