id(); $table->string('nom'); $table->string('raison_sociale')->nullable(); $table->string('siret', 14)->nullable(); $table->text('adresse')->nullable(); $table->string('code_postal', 10)->nullable(); $table->string('ville')->nullable(); $table->string('telephone', 20)->nullable(); $table->string('email')->nullable(); $table->string('contact_commercial')->nullable(); $table->string('email_commercial')->nullable(); $table->string('telephone_commercial', 20)->nullable(); $table->string('site_web')->nullable(); $table->text('notes')->nullable(); $table->boolean('active')->default(true); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('fournisseurs'); } };