ash_postgres/test/support/resources/entity.ex
Eduardo B. Alexandre d5d312de56 feat: Add unit test to check lateral joins
with custom schemas and tables
2024-01-10 08:19:10 -05:00

29 lines
547 B
Elixir

defmodule AshPostgres.Test.Entity do
@moduledoc false
use Ash.Resource,
data_layer: AshPostgres.DataLayer
attributes do
uuid_primary_key :id
attribute :full_name, :string, allow_nil?: false
timestamps(private?: false)
end
postgres do
table "entities"
repo AshPostgres.TestRepo
end
actions do
defaults [:create, :read]
read :read_from_temp do
prepare fn query, _ ->
Ash.Query.set_context(query, %{data_layer: %{table: "temp_entities", schema: "temp"}})
end
end
end
end