ash_postgres/test/support/resources/post_follower.ex

28 lines
491 B
Elixir
Raw Normal View History

defmodule AshPostgres.Test.PostFollower do
use Ash.Resource,
data_layer: AshPostgres.DataLayer
postgres do
table "post_followers"
repo AshPostgres.TestRepo
end
actions do
defaults([:create, :read, :update, :destroy])
end
attributes do
uuid_primary_key(:id)
end
relationships do
belongs_to :post, AshPostgres.Test.Post do
allow_nil?(false)
end
belongs_to :follower, AshPostgres.Test.User do
allow_nil?(false)
end
end
end