defmodule PlaylistEntry
relationships do
belongs_to :item, Item
belongs_to :playlist, Playlist
end
attributes do
attribute :position, :integer
end
end
defmodule PlaylistEntry
relationships do
belongs_to :item, Item
belongs_to :playlist, Playlist
end
attributes do
attribute :position, :integer
end
end