Changed the css font and the token length to 6

This commit is contained in:
xemeds
2020-07-25 18:28:42 +00:00
parent d6836c1c1c
commit 43062cd5e3
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ from tiny0 import db
class URL(db.Model):
id = db.Column(db.Integer, primary_key=True)
token = db.Column(db.String(8), index=True, unique=True, nullable=False)
token = db.Column(db.String(6), index=True, unique=True, nullable=False)
url = db.Column(db.String(2000), nullable=False)
def __repr__(self):