Update todo db-schema:1.0 notice

This commit is contained in:
xdrm-brackets 2017-09-11 08:26:03 +02:00
parent 9bd6212f5f
commit 317d6c7fb2
1 changed files with 5 additions and 4 deletions

View File

@ -30,12 +30,13 @@ User guide
## (1) Introduction & features
The `db-schema` package (v1.0) allows you to easily create a database (mysql-like) from a json file. It allows you to have a human-readable representation of your database that you can recover automatically.
The aim of this package is to make your life easier working with database creation and management. The only things you have to do is to write your JSON configuration, the package will do the rest.
The aim of this package is to make your life easier working with database creation, migration and management. The only things you have to do is to write your JSON configuration, the package will do the rest.
Features:
- Manage multiple databases (according to the database-driver)
- Push a json configuration to a database (mysql)
- Pull a database schema to a json file
- [x] Manage multiple databases (according to the database-driver)
- [x] Push a json configuration to a database (mysql)
- [x] Pull a database schema to a json file
- [ ] Migrate a database : automatically detect changes to apply
2 - Usage
----