diff --git a/database/migrations/2025_07_06_213447_match-node-port.php b/database/migrations/2025_07_06_213447_match-node-port.php new file mode 100644 index 000000000..b3909c162 --- /dev/null +++ b/database/migrations/2025_07_06_213447_match-node-port.php @@ -0,0 +1,29 @@ +get(); + foreach ($nodes as $node) { + $node->update(['daemon_connect' => $node->daemon_listen]); + } + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + // Not needed + } +};