id(); $table->string('name', 200); $table->string('phone_number', 20)->nullable(); $table->text('address')->nullable(); $table->timestamp('created_at')->useCurrent(); $table->timestamp('updated_at')->useCurrent()->useCurrentOnUpdate(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('suppliers'); } };