ash_sqlite/test/support/resources/integer_post.ex

21 lines
418 B
Elixir

defmodule AshSqlite.Test.IntegerPost do
@moduledoc false
use Ash.Resource,
domain: AshSqlite.Test.Domain,
data_layer: AshSqlite.DataLayer
sqlite do
table "integer_posts"
repo AshSqlite.TestRepo
end
actions do
default_accept(:*)
defaults([:create, :read, :update, :destroy])
end
attributes do
integer_primary_key(:id)
attribute(:title, :string, public?: true)
end
end