Browse Source

Fixed an SQL error with SQLServer (#14534).

git-svn-id: http://svn.redmine.org/redmine/trunk@13490 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.0.0
Jean-Philippe Lang 9 years ago
parent
commit
116eb8bcc7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/models/changeset.rb

+ 1
- 1
app/models/changeset.rb View File

@@ -37,7 +37,7 @@ class Changeset < ActiveRecord::Base
acts_as_searchable :columns => 'comments',
:scope => preload(:repository => :project),
:project_key => "#{Repository.table_name}.project_id",
:date_column => 'committed_on'
:date_column => "#{Changeset.table_name}.committed_on"

acts_as_activity_provider :timestamp => "#{table_name}.committed_on",
:author_key => :user_id,

Loading…
Cancel
Save