ash_postgres/test/support/resources/bio.ex

10 lines
182 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
attributes do
attribute(:title, :string)
attribute(:bio, :string)
end
end