Skip to content

Commit 4142468

Browse files
committed
Set spike_depths as nullable attribute
1 parent 2ce12c1 commit 4142468

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

element_array_ephys/ephys_acute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ class Unit(dj.Part):
503503
spike_count: int # how many spikes in this recording for this unit
504504
spike_times: longblob # (s) spike times of this unit, relative to the start of the EphysRecording
505505
spike_sites : longblob # array of electrode associated with each spike
506-
spike_depths : longblob # (um) array of depths associated with each spike, relative to the (0, 0) of the probe
506+
spike_depths=null : longblob # (um) array of depths associated with each spike, relative to the (0, 0) of the probe
507507
"""
508508

509509
def make(self, key):

element_array_ephys/ephys_chronic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ class Unit(dj.Part):
502502
spike_count: int # how many spikes in this recording for this unit
503503
spike_times: longblob # (s) spike times of this unit, relative to the start of the EphysRecording
504504
spike_sites : longblob # array of electrode associated with each spike
505-
spike_depths : longblob # (um) array of depths associated with each spike, relative to the (0, 0) of the probe
505+
spike_depths=null : longblob # (um) array of depths associated with each spike, relative to the (0, 0) of the probe
506506
"""
507507

508508
def make(self, key):

element_array_ephys/ephys_precluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ class Unit(dj.Part):
636636
spike_count: int # how many spikes in this recording for this unit
637637
spike_times: longblob # (s) spike times of this unit, relative to the start of the EphysRecording
638638
spike_sites : longblob # array of electrode associated with each spike
639-
spike_depths : longblob # (um) array of depths associated with each spike, relative to the (0, 0) of the probe
639+
spike_depths=null : longblob # (um) array of depths associated with each spike, relative to the (0, 0) of the probe
640640
"""
641641

642642
def make(self, key):

0 commit comments

Comments
 (0)