docs: move new note to what-is-ash-postgres.md

This commit is contained in:
Zach Daniel 2024-07-09 11:20:36 -04:00
parent 1f370b6357
commit a930457d87
2 changed files with 4 additions and 4 deletions

View file

@ -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)

View file

@ -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