id(); $table->string('nome'); $table->string('slug')->unique(); $table->string('email')->nullable(); $table->string('telefono')->nullable(); $table->text('note')->nullable(); $table->boolean('attivo')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('tenants'); } };