id(); $table->string('nom')->unique(); $table->date('date_echeance')->nullable(); $table->text('prestataire')->nullable(); $table->string('hebergeur')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('domaines'); } };