-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I anticipate this command being completed in prod in the next few hours, and then we won't need to ever run it again.
- Loading branch information
Showing
5 changed files
with
31 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 0 additions & 76 deletions
76
src/Application/Commands/CopyExistingPersonRecordsToMatchbot.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace BigGive\Identity\Migrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\Migrations\AbstractMigration; | ||
|
||
final class Version20250107182806 extends AbstractMigration | ||
{ | ||
public function getDescription(): string | ||
{ | ||
return 'remove unused key-value pair'; | ||
} | ||
|
||
public function up(Schema $schema): void | ||
{ | ||
$this->addSql(<<<'SQL' | ||
DELETE FROM KeyValue | ||
WHERE `key` = 'PersonRecordsSentToMatchBotTo' LIMIT 1; | ||
SQL | ||
); | ||
} | ||
|
||
|
||
public function down(Schema $schema): void | ||
{ | ||
// no-un-patch | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters