This commit is contained in:
f4ilji
2024-10-04 12:48:19 +05:00
parent 21a6e9073b
commit cebc584a14
303 changed files with 8224 additions and 2563 deletions
@@ -13,10 +13,11 @@ return new class extends Migration
{
Schema::create('schedules', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->text('days');
$table->string('type');
// $table->string('title');
$table->boolean('is_zaoch');
$table->text('file');
// $table->text('days');
// $table->string('type');
$table->unsignedBigInteger('educational_group_id');
$table->foreign('educational_group_id')->references('id')->on('educational_groups')->onDelete('cascade');
$table->timestamps();