Added total time of a course, marking chapters and courses to sync offline.

This commit is contained in:
Krzysztof Płaczek
2022-09-15 14:35:02 +02:00
parent fc23506f92
commit b158ec6b5d
9 changed files with 43 additions and 14 deletions

View File

@@ -14,8 +14,9 @@ return new class extends Migration {
$table->integer('order');
$table->text('title');
$table->text('duration')->nullable();
$table->text('link');
$table->text('video_link');
$table->text('link')->nullable();
$table->text('video_link')->nullable();
$table->boolean('sync_offline')->default(0);
$table->integer('video_size');
$table->timestamps();
});