소스 검색

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();