diff --git a/app/models/checklist.rb b/app/models/checklist.rb index 4499254b4..481cf2959 100644 --- a/app/models/checklist.rb +++ b/app/models/checklist.rb @@ -9,6 +9,7 @@ class Checklist < ActiveRecord::Base belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User' belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User' has_many :checklist_items, + -> { order(:position) }, inverse_of: :checklist, dependent: :destroy has_many :report_elements,