Changeset - 50e32940e464
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 14 years ago 2012-01-12 04:51:13
marcin@python-works.com
code garden
1 file changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/db.py
Show inline comments
 
@@ -1048,7 +1048,6 @@ class ChangesetComment(Base, BaseModel):
 
    author = relationship('User', lazy='joined')
 
    repo = relationship('Repository')
 

	
 

	
 
    @classmethod
 
    def get_users(cls, revision):
 
        """
 
@@ -1065,7 +1064,7 @@ class ChangesetComment(Base, BaseModel):
 

	
 
class Notification(Base, BaseModel):
 
    __tablename__ = 'notifications'
 
    __table_args__ = ({'extend_existing':True})
 
    __table_args__ = ({'extend_existing': True},)
 

	
 
    TYPE_CHANGESET_COMMENT = u'cs_comment'
 
    TYPE_MESSAGE = u'message'
0 comments (0 inline, 0 general)