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

19 lines
353 B
Elixir

defmodule AshPostgres.Test.IntegerPost do
@moduledoc false
use Ash.Resource,
data_layer: AshPostgres.DataLayer
postgres do
table "integer_posts"
repo AshPostgres.TestRepo
end
actions do
defaults([:create, :read, :update, :destroy])
end
attributes do
integer_primary_key(:id)
attribute(:title, :string)
end
end