Skip to content

Commit

Permalink
Fix problems for redmine master
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Jan 31, 2024
1 parent 1c926a1 commit 2e9a8ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/issue_view_column.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

class IssueViewColumn < ActiveRecord::Base
class IssueViewColumn < Rails.version < '7.1' ? ActiveRecord::Base : ApplicationRecord
belongs_to :project

scope :sorted, -> { order :position }
Expand Down

0 comments on commit 2e9a8ce

Please sign in to comment.