Add New Dump Method
DbManager\MysqlBundle\Service\Methods\MysqldumpOverSsh:
autowire: true
tags:
- { name: 'app.backup_method' }1. Specify name and description of the method
public function getCode(): string
{
return 'aws-s3';
}
public function getDescription(): string
{
return 'AWS S3';
}2. Second step is to configure prompts to ask all required configs:
3. Configure validator
4. Configure dump creation
Last updated