id(); $table->foreignId('tenant_id')->nullable()->constrained()->nullOnDelete(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password'); $table->string('locale', 10)->nullable(); $table->enum('preferred_calendar', ['gregorian', 'jalali', 'hijri'])->nullable(); $table->boolean('is_active')->default(true); $table->rememberToken(); $table->timestamps(); $table->softDeletes(); $table->index('tenant_id'); }); } public function down(): void { Schema::dropIfExists('users'); } };