vizrex/laravel-db-utils
Laravel package providing Artisan CLI utilities for database operations (backup, restore, create). Includes configurable defaults, optional upload of backup files to Dropbox or Google Drive via filesystem disks, and uses MySQL connection settings from your Laravel config.
READ THIS FIRST
It is highly recommended for all contributors to update this file whenever there's a major update in source code. Use this tool for easy editing or visit this page for comprehensive guide on markdown syntax.
This package contains command line utilities for database operations like backup, restore and create.
The following packages are used as dependencies:
Publish the configuration using command php artisan vendor:publish --provider='Vizrex\LaravelDbUtils\LaravelDbUtilsProvider'
This will publish dbutils.php to config/
In dbutils.php, you can set default behaviour for included command line utilities.
Add the following sections in disks array in your config/filesystems
'dropbox' => [
'driver' => 'dropbox',
'token' => env('DROPBOX_TOKEN'),
],
'google' => [
'driver' => 'google',
'clientId' => env('GOOGLE_DRIVE_CLIENT_ID'),
'clientSecret' => env('GOOGLE_DRIVE_CLIENT_SECRET'),
'refreshToken' => env('GOOGLE_DRIVE_REFRESH_TOKEN'),
'folderId' => env('GOOGLE_DRIVE_FOLDER_ID'),
],
You also need to add these variables in .env with their values.
DROPBOX_TOKEN=xxxxxxx
GOOGLE_DRIVE_CLIENT_ID=xxxxxxxxxx
GOOGLE_DRIVE_CLIENT_SECRET=xxxxxxxxxx
GOOGLE_DRIVE_REFRESH_TOKEN=xxxxxxxxxx
GOOGLE_DRIVE_FOLDER_ID=xxxxxxxxxx
This will be used to upload database backup file to dropbox and google drive.
This gist is helpful for getting google drive credentials https://gist.github.com/sergomet/f234cc7a8351352170eb547cccd65011
A console command to backup the application's default mysql database. the following config variables are used to backup the database:
database.connections.mysql.databasedatabase.connections.mysql.usernamedatabase.connections.mysql.passworddb:backup {--path= : The path to save the backup file.} {--ignore_tables= : Comma separated list of tables that should not be included in backup} {--compress= : Whether to compress the backup file. It accepts true or false} {--upload= : Whether to upload the backup file to Dropbox and Google Drive. It accepts true or false}
--path is not provided, then default path will be used. Default path can be configured in config/dbutils.php as backup.path--compress is not provided, default value will be used which can be configured in config/dbutils.php as backup.compress--upload is not provided, default value will be used which can be configured in config/dbutils.php as backup.uploadphp artisan db:backupphp artisan db:backup --path=/backups/ --compress=truephp artisan db:backup --upload=truephp artisan db:backup path= /backups/ --ignore_tables=cities,vehicles,invoices --upload=true --compress=trueThis command is used to resotre a database from given file. This command uses following config variables to determine which database to restore to.
database.connections.mysql.databasedatabase.connections.mysql.usernamedatabase.connections.mysql.passworddatabase.connections.mysql.hostdb:restore {path}
db:restore /backups/2018_08_03_12_12_42_726150_db_project.sql
This command is used to create a database for the application. It can also create a new user, give that user the previllages for newly created database and set database variables in .env
db:create {new_database : name for the database to be created}
{username : A username that has CREATE TABLE privileges}
{--password= : Password for the user}
{--host= : Database host.}
{--port= : Database port.}
{--new_user= : If provided, a new user will be created and will be granted database privileges}
{--new_password= : Password for the new user}
{--set_env=true: Whether to write database variables to .env . It accepts true or false, default is true}
create array in config/dbutils.php is used to set default values for host and port options.php artisan db:create db_shop_mgmt --username=root --password=rootphp artisan db:create db_shop_mgmt --username=root --password=root --new_user=user123 --new_password=12345678php artisan db:create db_shop_mgmt --username=root --password=root --new_user=user123 --new_password=12345678 --set_env=false--set_env is true, the following variables in .env will be set:
Backup of .env will be automatically stored at storage/dotenv-editor/backups/ before new values are written.
How can I help you explore Laravel packages today?