From 498ecb5b6a34e85e32ea149becfdb16fbee9214c Mon Sep 17 00:00:00 2001 From: Ken Roberts Date: Mon, 13 Oct 2014 08:11:55 -0700 Subject: [PATCH] increase pin length to allow test pin --- openlp/core/lib/projector/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/lib/projector/db.py b/openlp/core/lib/projector/db.py index 3663ef4bf..7a7e7c550 100644 --- a/openlp/core/lib/projector/db.py +++ b/openlp/core/lib/projector/db.py @@ -118,7 +118,7 @@ class Projector(CommonBase, Base): """ ip = Column(String(100)) port = Column(String(8)) - pin = Column(String(6)) + pin = Column(String(20)) name = Column(String(20)) location = Column(String(30)) notes = Column(String(200))