id(); $table->string('chiave')->unique(); $table->string('valore')->nullable(); $table->string('descrizione')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('impostazioni'); } };