From 905834a511037569bb4b2fe1d5b3a58c58121361 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Thu, 27 Apr 2023 23:43:37 +0800 Subject: [PATCH] Changelog --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 742ab01c..43b2dab0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,7 +32,6 @@ let customer = Customer::find() // Since it's of type `Option`, it'll be `None` and no error will be thrown. assert_eq!(customers.notes, None); ``` -* Added `sea_orm_macros::EnumIter` to implement `strum::IntoEnumIterator` trait for the derived enum (source code adapted from https://github.com/Peternator7/strum) * [sea-orm-cli] the `migrate init` command will create a `.gitignore` file when the migration folder reside in a Git repository https://github.com/SeaQL/sea-orm/pull/1334 * Added `MigratorTrait::migration_table_name()` method to configure the name of migration table https://github.com/SeaQL/sea-orm/pull/1511 ```rs