aboutsummaryrefslogtreecommitdiff
path: root/app/models.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-06-02 18:32:07 +0100
committerrubenwardy <rw@rubenwardy.com>2018-06-02 18:32:07 +0100
commita6f4249afb7018c43e69a7e7c7e69e53bf04aa8d (patch)
treebca89b38ddcc7eca3a7055b3a9e20cae4adb5abb /app/models.py
parent70afb94d3b985e314ff1f922294875e43c56fefc (diff)
downloadcheatdb-a6f4249afb7018c43e69a7e7c7e69e53bf04aa8d.tar.xz
Increase link string length limit
Diffstat (limited to 'app/models.py')
-rw-r--r--app/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models.py b/app/models.py
index d85a888..5780aa0 100644
--- a/app/models.py
+++ b/app/models.py
@@ -688,7 +688,7 @@ class KrockForumTopic(db.Model):
ttype = db.Column(db.Integer, nullable=False)
title = db.Column(db.String(200), nullable=False)
name = db.Column(db.String(30), nullable=True)
- link = db.Column(db.String(50), nullable=True)
+ link = db.Column(db.String(200), nullable=True)
def getType(self):
if self.ttype == 1 or self.ttype == 2: