Browse Source

CLDC-2470: Order bulk upload error rows numerically

pull/2381/head
Rachael Booth 2 years ago
parent
commit
43ea46ceac
  1. 2
      app/models/bulk_upload_error.rb

2
app/models/bulk_upload_error.rb

@ -1,7 +1,7 @@
class BulkUploadError < ApplicationRecord
belongs_to :bulk_upload
scope :order_by_row, -> { order(row: :asc) }
scope :order_by_row, -> { order("row::integer ASC") }
scope :order_by_cell, -> { order(Arel.sql("LPAD(cell, 10, '0')")) }
scope :order_by_col, -> { order(Arel.sql("LPAD(col, 10, '0')")) }
end

Loading…
Cancel
Save