diff --git a/notice/db-schema/1.0.md b/notice/db-schema/1.0.md index a4f3fab..ff85834 100644 --- a/notice/db-schema/1.0.md +++ b/notice/db-schema/1.0.md @@ -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 ----