diff --git a/packages/orm/angel_migration_runner/CHANGELOG.md b/packages/orm/angel_migration_runner/CHANGELOG.md index 0f5e89cd..f0b5a981 100755 --- a/packages/orm/angel_migration_runner/CHANGELOG.md +++ b/packages/orm/angel_migration_runner/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 8.2.0 + +* [BREAKING] Updated `postgres` to 3.0.0 + ## 8.1.1 * Updated repository link diff --git a/packages/orm/angel_migration_runner/README.md b/packages/orm/angel_migration_runner/README.md index a0987631..a4011619 100755 --- a/packages/orm/angel_migration_runner/README.md +++ b/packages/orm/angel_migration_runner/README.md @@ -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