id(); $table->string('uuid')->unique(); $table->string('name'); $table->boolean('personal_team')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('teams'); } };