backup-manager is an excelent package, but lack of auto naming feature, here is a workaround using Laravel's Artisan command line tool.
This is the command what we are going to accomplish:
php artisan db:cloudbackup
php artisan command:make DatabaseBackupCommand
File app/start/artisan.php
add the following line in the end of the file:
Artisan::add(new DatabaseBackupCommand);
Edit app/commands/DatabaseBackupCommand.php
, Code is following:
<?php
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
class DatabaseBackupCommand extends Command {
/**
* The console command name.
*
* @var string
*/
protected $name = 'db:cloudbackup';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Auto backup database to the cloud with auto naming.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function fire()
{
$now = Carbon::now();
$folder = $now->format('Y-m') . '/';
$database = Config::get('database.connections.mysql.database');
$subfix = '_' . $now->toDateTimeString() . '.sql';
$filename = $folder . $database . $subfix;
// database, destination, destinationPath, compression
$this->call('db:backup', [
'--database' => 'mysql',
'--destination' => 'dropbox',
'--destinationPath' => $filename,
'--compression' => 'gzip',
]);
}
}
vi /usr/sbin/dbcloudbackup
Add the following content:
#!/bin/sh
cd /path/to/your/project/root
php artisan db:cloudbackup
Add execute permission:
$ chmod +x /usr/sbin/dbcloudbackup
Give it a test
$ dbcloudbackup
See the result, in my case Dropbox
:
Edit crontab:
crontab -e
Add the following line, run the script every day at 3:30
:
30 3 * * * /usr/sbin/dbcloudbackup
You can also use https://github.com/Indatus/dispatcher. To skip the step of adding cron or bash script.