id(); $table->string('name')->unique(); $table->string('color', 7)->nullable(); $table->timestamp('hidden_at')->nullable(); $table->timestamp('last_imported_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('labels'); } };