fix(db): Prevent data loss by temporarily disabling db:convert-type

Needed until #45257 is addressed to prevent data loss

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2024-05-17 22:26:15 -04:00 committed by GitHub
parent 54afea4b01
commit 59dc6b49cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -177,6 +177,13 @@ class ConvertType extends Command implements CompletionAwareInterface {
}
protected function execute(InputInterface $input, OutputInterface $output): int {
// WARNING:
// Leave in place until #45257 is addressed to prevent data loss (hopefully in time for the next maintenance release)
//
throw new \InvalidArgumentException(
'This command is temporarily disabled (until the next maintenance release).'
);
$this->validateInput($input, $output);
$this->readPassword($input, $output);