浏览代码

remove comment

Gustavo Zanatta 1 月之前
父节点
当前提交
74f61c06d2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      database/migrations/2026_02_09_180113_create_provider_working_days_table.php

+ 1 - 1
database/migrations/2026_02_09_180113_create_provider_working_days_table.php

@@ -14,7 +14,7 @@ return new class extends Migration
         Schema::create('provider_working_days', function (Blueprint $table) {
             $table->id();
             $table->foreignId('provider_id')->constrained('providers')->onDelete('cascade');
-            $table->integer('day'); // 1-7 (1=Sunday, 7=Saturday)
+            $table->integer('day');
             $table->enum('period', ['morning', 'afternoon']);
             $table->timestamps();
             $table->softDeletes();