From ae3544396c464391e31c6c0f22ef34e2603f98d7 Mon Sep 17 00:00:00 2001 From: thomashii Date: Thu, 25 Jan 2024 12:48:43 +0800 Subject: [PATCH] Updated change log --- packages/orm/angel_migration_runner/CHANGELOG.md | 4 ++++ packages/orm/angel_migration_runner/README.md | 11 ++++++++--- 2 files changed, 12 insertions(+), 3 deletions(-) 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