uuid('id')->primary(); $table->string('name'); $table->string('type'); $table->string('address')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('projects'); } };