aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/model/db.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-08-20 21:40:25 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-08-20 21:40:25 +0200
commit8113d57aa9e07ba8d26803f4c5426b203e3913cf (patch)
tree44fa3daa6ec244c0f6f68f16f5f4cac83db3b38e /rhodecode/model/db.py
parent20d2480510ce972ecff72499098be83d09cb3264 (diff)
added highlight lines field in ChangesetComments, will be used
later for attaching comments to blocks --HG-- branch : beta
Diffstat (limited to 'rhodecode/model/db.py')
-rwxr-xr-xrhodecode/model/db.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rhodecode/model/db.py b/rhodecode/model/db.py
index c5fea82e..236d3b52 100755
--- a/rhodecode/model/db.py
+++ b/rhodecode/model/db.py
@@ -1467,6 +1467,7 @@ class ChangesetComment(Base, BaseModel):
revision = Column('revision', String(40), nullable=True)
pull_request_id = Column("pull_request_id", Integer(), ForeignKey('pull_requests.pull_request_id'), nullable=True)
line_no = Column('line_no', Unicode(10), nullable=True)
+ hl_lines = Column('hl_lines', Unicode(512), nullable=True)
f_path = Column('f_path', Unicode(1000), nullable=True)
user_id = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=False)
text = Column('text', Unicode(25000), nullable=False)