ash_sqlite/test/support/resources/organization.ex

22 lines
425 B
Elixir
Raw Normal View History

2023-09-23 14:52:22 +12:00
defmodule AshSqlite.Test.Organization do
@moduledoc false
use Ash.Resource,
domain: AshSqlite.Test.Domain,
2023-09-23 14:52:22 +12:00
data_layer: AshSqlite.DataLayer
sqlite do
table("orgs")
repo(AshSqlite.TestRepo)
end
actions do
default_accept(:*)
2023-09-23 14:52:22 +12:00
defaults([:create, :read, :update, :destroy])
end
attributes do
uuid_primary_key(:id, writable?: true)
attribute(:name, :string, public?: true)
2023-09-23 14:52:22 +12:00
end
end