Updated change log
This commit is contained in:
parent
b9b59523ef
commit
ae3544396c
2 changed files with 12 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
|||
# Change Log
|
||||
|
||||
## 8.2.0
|
||||
|
||||
* [BREAKING] Updated `postgres` to 3.0.0
|
||||
|
||||
## 8.1.1
|
||||
|
||||
* Updated repository link
|
||||
|
|
|
@ -19,10 +19,15 @@ Supported database:
|
|||
|
||||
* Use `MySqlMigrationRunner` to perform database migration for MySQL and MariaDB. This runner is using [`mysql_client`](https://pub.dev/packages?q=mysql_client) driver.
|
||||
|
||||
* Use `MariaDbMigrationRunner` to perform database migration for MariaDB. This runner is using[`mysql1`](https://pub.dev/packages?q=mysql1) driver.
|
||||
* Use `MariaDbMigrationRunner` to perform database migration for MariaDB. This runner is using [`mysql1`](https://pub.dev/packages?q=mysql1) driver.
|
||||
|
||||
## Supported Operations
|
||||
|
||||
* reset - Clear out all records in the `migrations` table and drop all the managed ORM tables.
|
||||
* up - Generate all the managed ORM tables based on the ORM models.
|
||||
* reset - Clear out all records in the `migrations` table and drop all the ORM related tables.
|
||||
* up - Generate all the tables based on the ORM models.
|
||||
* refresh - Run `reset` follow by `up`
|
||||
|
||||
## To do
|
||||
|
||||
* Update existing tables
|
||||
* Reverse engineer tables into models
|
||||
|
|
Loading…
Reference in a new issue