From 0b3825422c1e0d61dc21faf1442c187274b67789 Mon Sep 17 00:00:00 2001 From: Lars-Erik Roald Date: Thu, 21 Nov 2024 15:39:34 +0100 Subject: [PATCH] readme schema --- README.md | 5 +++++ docs/changelog.md | 2 ++ 2 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 0e765843..506a6582 100644 --- a/README.md +++ b/README.md @@ -359,6 +359,11 @@ npm install pg import map from './map'; const db = map.postgres('postgres://postgres:postgres@postgres/postgres'); ``` +With schema +```javascript +import map from './map'; +const db = map.postgres('postgres://postgres:postgres@postgres/postgres?search_path=custom'); +``` __Oracle__ ```bash npm install oracledb diff --git a/docs/changelog.md b/docs/changelog.md index 9b3c5b0e..34215c7e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,6 @@ ## Changelog +__4.4.2__ +Support for schema in connection string. Postgrs only. [#116](https://github.com/alfateam/orange-orm/issues/118) __4.4.1__ Support for date-only ISO strings. [#116](https://github.com/alfateam/orange-orm/issues/116) __4.4.0__