Popularity
5.3
Stable
Activity
0.0
Stable
41
4
18
Monthly Downloads: 1
Programming language: Elixir
License: Apache License 2.0
Tags:
ORM And Datamapping
Latest version: v0.2.0
ecto_ordered alternatives and similar packages
Based on the "ORM and Datamapping" category.
Alternatively, view ecto_ordered alternatives based on common mentions on social networks and blogs.
-
paper_trail
Track and record all the changes in your database with Ecto. Revert back to anytime in history. -
ecto_psql_extras
Ecto PostgreSQL database performance insights. Locks, index usage, buffer cache hit ratios, vacuum stats and more.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ecto_ordered or a related project?
README
EctoOrdered
Ecto extension to support ordered list items. Similar to acts_as_list, but for Ecto
Examples
# Global positioning
defmodule MyModel do
use Ecto.Schema
import EctoOrdered
schema "models" do
field :position, :integer, virtual: true
field, :rank, :integer
end
def changeset(model, params) do
model
|> cast(params, [], [:position])
|> set_order(:position)
end
end
# Scoped positioning
defmodule MyModel do
use Ecto.Model
use EctoOrdered, scope: :reference_id
schema "models" do
field :reference_id, :integer
field :position, :integer, virtual: true
end
def changeset(model, params) do
model
|> cast(params, [], [:position, :reference_id])
|> set_order(:position, :reference_id)
end
end