id(); $table->uuid('uuid')->unique(); $table->string('name'); $table->enum('type', ['school', 'private', 'system'])->default('private'); $table->boolean('active')->default(true); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tenants'); } };