Changeset - 1a5c41e4bb02
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 15 years ago 2011-01-28 19:44:41
marcin@python-works.com
fixees for #106 relation issues on databases different than sqlite
2 files changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -28,7 +28,7 @@ fixes
 
  not changing
 
- fixed propagation to error controller on simplehg and simplegit middlewares
 
- fixed error when trying to make a download on empty repository
 

	
 
- fixed #106 relation issues on databases different than sqlite
 

	
 
1.1.2 (**2011-01-12**)
 
======================
rhodecode/model/db.py
Show inline comments
 
@@ -197,6 +197,8 @@ class Repository(Base, BaseModel):
 

	
 
    repo_followers = relation('UserFollowing', primaryjoin='UserFollowing.follows_repo_id==Repository.repo_id', cascade='all')
 

	
 
    logs = relation('UserLog', cascade='all')
 

	
 
    def __repr__(self):
 
        return "<%s('%s:%s')>" % (self.__class__.__name__,
 
                                  self.repo_id, self.repo_name)
0 comments (0 inline, 0 general)