remove reverse migration for update_blockonomics

This commit is contained in:
cnohall 2025-03-18 09:53:37 +09:00
parent 2009544c56
commit 76caeaa096
1 changed files with 1 additions and 9 deletions

View File

@ -27,14 +27,6 @@ return new class extends Migration
*/ */
public function down(): void public function down(): void
{ {
$gateway = Gateway::find(65); //
if ($gateway) {
// Optionally restore the original state
$fields = json_decode($gateway->fields);
$fields->callbackSecret = ""; // Adding it back if needed
$gateway->fields = json_encode($fields);
$gateway->site_url = 'https://blockonomics.co';
$gateway->save();
}
} }
}; };