paulovitorbal / pimcore-tools
A tool set to user with Pimcore
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 467
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:pimcore-bundle
This package is not auto-updated.
Last update: 2020-02-07 18:14:57 UTC
README
Introduction
This package contains some commands (tools) to help you while developing Pimcore applications.
Commands availabe
Database dump
You will have two commands:
tools:database:dump tools:database:reload tools:database:create
One will call mysqldump (you should have it installed) and the second one will load the dump file created by the first command.
The available argument is:
- file - The filename of the file that will be generated, defaul value = dump.sql;
The available options are:
- --skip, -s - will only print the commands that should be executed;
- --remote, -s will connect to a remote server, using a connection named 'remote', configured in your pimcore installation;
The database create command will create a command with the following statement:
CREATE DATABASE IF NOT EXISTS **database** charset=utf8mb4
Where database is the name of the database that is located in the configuration file.