I have two models: project and task (for example) with a join model: project_task enabling a has_many through relationship so that tasks may be shared across projects.
I have specified position as an attribute of the project_task model. Now I want to be able to access tasks by their position in the project_tasks table via a given project.
i.e. project.tasks (ordered by the position listed for each task in the project_tasks table).
Is this possible?
I think something like that can help you: