mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
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:
parent
54afea4b01
commit
59dc6b49cd
1 changed files with 7 additions and 0 deletions
|
|
@ -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…
Reference in a new issue