From 7f689020af69d508178727c60eba8d204a30f01b Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Thu, 27 Sep 2012 20:27:35 -0400 Subject: [PATCH] added primary_key and indexed member variables --- PLC/Parameter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PLC/Parameter.py b/PLC/Parameter.py index 4b0cd08d..c2b34667 100644 --- a/PLC/Parameter.py +++ b/PLC/Parameter.py @@ -20,7 +20,8 @@ class Parameter: optional = None, ro = False, nullok = False, - primary_key = False): + primary_key = False, + indexed = False): # Basic type of the parameter. Must be a builtin type # that can be marshalled by XML-RPC. self.type = typeval -- 2.47.0