From 9e6a9bb1e87e2445232c1371e1dd744c42b81070 Mon Sep 17 00:00:00 2001
From: Sinisa Veseli <sveseli@aps.anl.gov>
Date: Thu, 9 Apr 2015 17:08:19 +0000
Subject: [PATCH] change default keys for experiment object to match db entity

---
 src/python/dm/common/objects/experiment.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/python/dm/common/objects/experiment.py b/src/python/dm/common/objects/experiment.py
index 7c357862..b83ecc9c 100755
--- a/src/python/dm/common/objects/experiment.py
+++ b/src/python/dm/common/objects/experiment.py
@@ -5,7 +5,7 @@ from dmObject import DmObject
 
 class Experiment(DmObject):
 
-    DEFAULT_KEY_LIST = [ 'id', 'name', 'dataDirectory', 'startTime', 'stopTime' ]
+    DEFAULT_KEY_LIST = [ 'id', 'name', 'dataDirectory', 'startDate', 'endDate', 'daqStartTime', 'daqEndTime' ]
 
     def __init__(self, dict={}):
         DmObject.__init__(self, dict)
-- 
GitLab