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