From a930457d87347c4b5f120814b6ca72d2c6deb5f8 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 9 Jul 2024 11:20:36 -0400 Subject: [PATCH] docs: move new note to what-is-ash-postgres.md --- README.md | 4 ---- .../topics/about-ash-postgres/what-is-ash-postgres.md | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fa7bcfc..2d9bb79 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,6 @@ Welcome! `AshPostgres` is the PostgreSQL data layer for [Ash Framework](https://hexdocs.pm/ash). -> ### What versions are supported? {: .info} -> -> Any version higher than 13 is fully supported. Versions lower than this can be made to work, but certain edge cases may need to be manually handled. This becomes more and more true the further back in versions that you go. - ## Tutorials - [Get Started](documentation/tutorials/get-started-with-ash-postgres.md) diff --git a/documentation/topics/about-ash-postgres/what-is-ash-postgres.md b/documentation/topics/about-ash-postgres/what-is-ash-postgres.md index 253c4df..883b351 100644 --- a/documentation/topics/about-ash-postgres/what-is-ash-postgres.md +++ b/documentation/topics/about-ash-postgres/what-is-ash-postgres.md @@ -2,6 +2,10 @@ AshPostgres is the PostgreSQL `Ash.DataLayer` for [Ash Framework](https://hexdocs.pm/ash). This is the most fully-featured Ash data layer, and unless you need a specific characteristic or feature of another data layer, you should use `AshPostgres`. +> ### What versions are supported? {: .info} +> +> Any version higher than 13 is fully supported. Versions lower than this can be made to work, but certain edge cases may need to be manually handled. This becomes more and more true the further back in versions that you go. + Use this to persist records in a PostgreSQL table or view. For example, the resource below would be persisted in a table called `tweets`: ```elixir