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>
pull/45400/head
Josh 2 years ago committed by GitHub
parent 54afea4b01
commit 59dc6b49cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      core/Command/Db/ConvertType.php

@ -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);

Loading…
Cancel
Save