ash_postgres/test/support/resources/bio.ex

15 lines
298 B
Elixir
Raw Normal View History

2022-02-08 10:48:36 +13:00
defmodule AshPostgres.Test.Bio do
@moduledoc false
use Ash.Resource, data_layer: :embedded
2022-04-20 03:08:28 +12:00
actions do
defaults([:create, :read, :update, :destroy])
end
2022-02-08 10:48:36 +13:00
attributes do
attribute(:title, :string)
attribute(:bio, :string)
attribute(:years_of_experience, :integer)
2022-02-08 10:48:36 +13:00
end
end