id(); $table->string('name', 255); $table->foreignId('project_id')->nullable()->constrained('projects'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('labels'); } };