defmodule AshPostgres.MultitenancyTest.Post do @moduledoc false use Ash.Resource, data_layer: AshPostgres.DataLayer attributes do attribute(:id, :uuid, primary_key?: true, default: &Ash.uuid/0) attribute(:name, :string) end actions do create(:create) read(:read) update(:update) destroy(:destroy) end postgres do table "multitenant_posts" repo AshPostgres.TestRepo end multitenancy do strategy(:context) end relationships do belongs_to(:org, AshPostgres.MultitenancyTest.Org) end end