Skip to content

Commit

Permalink
postgres array SeaQL/sea-orm#1565
Browse files Browse the repository at this point in the history
  • Loading branch information
darkmmon committed Jul 12, 2023
1 parent d3b8d74 commit bda6690
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SeaORM/docs/0.12.x-CHANGELOG_temp.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ let migration = migrations.get(0).unwrap();
assert_eq!(migration.name(), "m20220118_000002_create_fruit_table");
assert_eq!(migration.status(), MigrationStatus::Pending);
```
================================ All Changes above was being Documented ================================
* The `postgres-array` feature will be enabled when `sqlx-postgres` backend is selected https://github.com/SeaQL/sea-orm/pull/1565
================================ All Changes above was being Documented ================================
* Replace `String` parameters in API with `Into<String>` https://github.com/SeaQL/sea-orm/pull/1439
* Implements `IntoMockRow` for any `BTreeMap` that is indexed by string `impl IntoMockRow for BTreeMap<T, Value> where T: Into<String>`
* Converts any string value into `ConnectOptions` - `impl From<T> for ConnectOptions where T: Into<String>`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,5 @@ Basically, they are in the form of `runtime-ASYNC_RUNTIME-TLS_LIB`:
+ `with-rust_decimal` - support [`rust_decimal`](https://crates.io/crates/rust_decimal) types
+ `with-bigdecimal` - support [`bigdecimal`](https://crates.io/crates/bigdecimal) types
+ `with-uuid` - support [`uuid`](https://crates.io/crates/uuid) types
+ `postgres-array` - support array types in Postgres
+ `postgres-array` - support array types in Postgres, automatically enabled when the driver is `sqlx-postgres`
+ `sea-orm-internal` - opt-in unstable internal APIs (for accessing re-export SQLx types)

0 comments on commit bda6690

Please sign in to comment.