ash_postgres/test/support/multitenancy/resources/post.ex

33 lines
638 B
Elixir
Raw Normal View History

2020-10-29 15:26:45 +13:00
defmodule AshPostgres.MultitenancyTest.Post do
@moduledoc false
use Ash.Resource,
data_layer: AshPostgres.DataLayer
attributes do
2021-01-13 14:27:39 +13:00
uuid_primary_key(:id, writable?: true)
2021-01-13 14:22:28 +13:00
attribute(:name, :string)
2020-10-29 15:26:45 +13:00
end
actions do
2021-01-13 14:22:28 +13:00
create(:create)
read(:read)
update(:update)
destroy(:destroy)
2020-10-29 15:26:45 +13:00
end
postgres do
table "multitenant_posts"
repo AshPostgres.TestRepo
end
multitenancy do
# Tells the resource to use the data layer
# multitenancy, in this case separate postgres schemas
2021-01-13 14:22:28 +13:00
strategy(:context)
2020-10-29 15:26:45 +13:00
end
relationships do
2021-01-13 14:22:28 +13:00
belongs_to(:org, AshPostgres.MultitenancyTest.Org)
2020-10-29 15:26:45 +13:00
end
end