diff options
| author | gitlabhq <m@gitlabhq.com> | 2011-10-15 20:54:39 +0300 |
|---|---|---|
| committer | gitlabhq <m@gitlabhq.com> | 2011-10-15 20:54:39 +0300 |
| commit | 99777cab2a64a94cc6798a6f1ac562850bc08172 (patch) | |
| tree | e64cc06d6f704673e4495caeea749ceb9f51eb91 /app/models/project.rb | |
| parent | c37492b5dcd8188bc2f738e7a8994855926a2d83 (diff) | |
| parent | e6bba9be4f0400471170e9d86f3ef15344416f2f (diff) | |
| download | gitlab-ce-99777cab2a64a94cc6798a6f1ac562850bc08172.tar.gz | |
Merge branch 'issue_im'
Conflicts:
config/initializers/rails_footnotes.rb
Diffstat (limited to 'app/models/project.rb')
| -rw-r--r-- | app/models/project.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project.rb b/app/models/project.rb index 0d90af866bf..3c07976d24e 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -3,7 +3,7 @@ require "grit" class Project < ActiveRecord::Base belongs_to :owner, :class_name => "User" - has_many :issues, :dependent => :destroy + has_many :issues, :dependent => :destroy, :order => "position" has_many :users_projects, :dependent => :destroy has_many :users, :through => :users_projects has_many :notes, :dependent => :destroy |
