ash_postgres/test/support/resources/bio.ex
2022-04-19 11:08:44 -04:00

13 lines
252 B
Elixir

defmodule AshPostgres.Test.Bio do
@moduledoc false
use Ash.Resource, data_layer: :embedded
actions do
defaults([:create, :read, :update, :destroy])
end
attributes do
attribute(:title, :string)
attribute(:bio, :string)
end
end