diff --git a/documentation/tutorials/get-started-with-ash-money.md b/documentation/tutorials/get-started-with-ash-money.md index f4706cd..a35a435 100644 --- a/documentation/tutorials/get-started-with-ash-money.md +++ b/documentation/tutorials/get-started-with-ash-money.md @@ -64,4 +64,9 @@ Add the following to your schema file: field(:amount, non_null(:decimal)) field(:currency, non_null(:string)) end -``` \ No newline at end of file +``` + +## Limitations + +Support for using built in operators with data layers that don't support it. For example, `expr(money + money)` will work in `AshPostgres`, but not when using `Ash.DataLayer.Ets`. +We need to make built in functions extensible by type to make this work. \ No newline at end of file