File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -147,15 +147,15 @@ class Event(dj.Imported):
147147 BehaviorRecording (foreign key): Behavior recording primary key.
148148 EventType (foreign key): EventType primary key.
149149 event_start_time (decimal(10, 4)): Time of event onset in seconds, WRT recording start.
150- event_end_time (decimal(10, 4) ): Optional. Seconds WRT recording start.
150+ event_end_time (float ): Optional. Seconds WRT recording start.
151151 """
152152
153153 definition = """
154154 -> BehaviorRecording
155155 -> EventType
156156 event_start_time : decimal(10, 4) # (second) relative to recording start
157157 ---
158- event_end_time=null : decimal(10, 4) # (second) relative to recording start
158+ event_end_time=null : float # (second) relative to recording start
159159 """
160160
161161 def make (self , key ):
You can’t perform that action at this time.
0 commit comments