2020-11-14 01:38:56 +00:00
|
|
|
# MyVC (MySQL Version Control)
|
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
Utilities to ease the maintenance of MySQL or MariaDB database versioning using
|
|
|
|
a Git repository.
|
|
|
|
|
|
|
|
This project is just to bring an idea to life and is still in an early stage of
|
|
|
|
development, so it may not be fully functional.
|
|
|
|
|
|
|
|
Any help is welcomed! Feel free to contribute.
|
2020-11-14 01:38:56 +00:00
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
Required applications.
|
|
|
|
|
|
|
|
* Node.js = 12.17.0 LTS
|
2020-11-15 18:24:25 +00:00
|
|
|
* Git
|
2020-11-14 01:38:56 +00:00
|
|
|
* Docker
|
|
|
|
|
2020-11-14 15:08:27 +00:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
It's recommended to install the package globally.
|
2020-11-15 18:24:25 +00:00
|
|
|
```text
|
2020-11-14 15:08:27 +00:00
|
|
|
# npm install -g myvc
|
|
|
|
```
|
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
You can also install locally and use the *npx* command to execute it.
|
|
|
|
```text
|
|
|
|
$ npm install myvc
|
|
|
|
$ npx myvc [action]
|
2020-11-14 01:38:56 +00:00
|
|
|
```
|
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
## How to use
|
2020-11-14 01:38:56 +00:00
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
Execute *myvc* with the desired action.
|
|
|
|
```text
|
|
|
|
$ myvc [-w|--workdir] [-e|--env] [-h|--help] action
|
2020-11-14 01:38:56 +00:00
|
|
|
```
|
2020-11-15 18:24:25 +00:00
|
|
|
The default working directory is the current one and unless otherwise indicated,
|
|
|
|
the default environment is *production*.
|
2020-11-14 01:38:56 +00:00
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
Available actions are:
|
|
|
|
* **structure**: Export the database structure.
|
|
|
|
* **fixtures**: Export the database structure.
|
|
|
|
* **routines**: Export database routines.
|
|
|
|
* **apply**: Apply changes into database, uses *local* environment by default.
|
|
|
|
* **run**: Builds and starts local database server container.
|
|
|
|
* **start**: Starts local database server container.
|
|
|
|
|
|
|
|
Each action can have its own specific commandline options.
|
2020-11-14 01:38:56 +00:00
|
|
|
|
|
|
|
## Basic information
|
|
|
|
|
|
|
|
Create database connection configuration files for each environment at main
|
2020-11-15 18:24:25 +00:00
|
|
|
project folder using the standard MySQL *.ini* parameters. The predefined
|
|
|
|
environment names are *production* and *testing*.
|
|
|
|
```text
|
2020-11-14 01:38:56 +00:00
|
|
|
db.[environment].ini
|
|
|
|
```
|
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
Structure and fixture dumps will be created inside *dump* folder.
|
2020-11-14 01:38:56 +00:00
|
|
|
|
|
|
|
* *structure.sql*
|
|
|
|
* *fixtures.sql*
|
|
|
|
* *fixtures.local.sql*
|
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
### Routines
|
|
|
|
|
|
|
|
Routines should be placed inside *routines* folder. All objects that have
|
|
|
|
PL/SQL code are considered routines. It includes functions, triggers, views and
|
|
|
|
events with the following structure.
|
|
|
|
```text
|
2020-11-14 01:38:56 +00:00
|
|
|
routines
|
|
|
|
`- schema
|
|
|
|
|- events
|
|
|
|
| `- eventName.sql
|
|
|
|
|- functions
|
|
|
|
| `- functionName.sql
|
|
|
|
|- procedures
|
|
|
|
| `- procedureName.sql
|
|
|
|
|- triggers
|
|
|
|
| `- triggerName.sql
|
|
|
|
`- views
|
|
|
|
`- viewName.sql
|
|
|
|
```
|
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
### Versions
|
2020-11-14 01:38:56 +00:00
|
|
|
|
2020-11-15 18:24:25 +00:00
|
|
|
Versions should be placed inside *changes* folder with the following structure.
|
|
|
|
```text
|
2020-11-14 01:38:56 +00:00
|
|
|
changes
|
|
|
|
|- 00001-firstVersionCodeName
|
|
|
|
| |- 00-firstExecutedScript.sql
|
|
|
|
| |- 01-secondScript.sql
|
|
|
|
| `- 99-lastScript.sql
|
|
|
|
`- 00002-secondVersion
|
|
|
|
|- 00-firstExecutedScript.sql
|
|
|
|
`- 00-sameNumbers.sql
|
|
|
|
```
|
|
|
|
## Built With
|
|
|
|
|
|
|
|
* [Git](https://git-scm.com/)
|
|
|
|
* [nodejs](https://nodejs.org/)
|
|
|
|
* [docker](https://www.docker.com/)
|