string('smtp_host')->nullable(); $table->unsignedInteger('smtp_port')->nullable(); $table->string('smtp_encryption')->nullable(); $table->text('smtp_username')->nullable(); $table->text('smtp_password')->nullable(); $table->string('smtp_local_domain')->nullable(); $table->boolean('smtp_verify_peer')->default(true); }); } /** * Reverse the migrations. */ public function down(): void { // } };