Gustavo Zanatta 1 mese fa
parent
commit
74f61c06d2

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