ash_postgres/test/support/resources/bio.ex
2022-02-07 16:48:36 -05:00

9 lines
182 B
Elixir

defmodule AshPostgres.Test.Bio do
@moduledoc false
use Ash.Resource, data_layer: :embedded
attributes do
attribute(:title, :string)
attribute(:bio, :string)
end
end