We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d119d commit 734aedbCopy full SHA for 734aedb
tests/TestCase.php
@@ -61,6 +61,7 @@ protected function setUpDatabase($app)
61
$table->id();
62
$table->foreignId('lesson_id')->references('id')->on('lms_lessons')->onDelete('cascade');
63
$table->unsignedInteger('order');
64
+ $table->boolean('is_optional')->default(false);
65
$table->string('name');
66
$table->string('slug');
67
$table->morphs('material');
0 commit comments