Skip to content

Commit 06274f8

Browse files
committed
Update - trial_type to varchar(24) in TrialType table
1 parent 1f8a336 commit 06274f8

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
44

5+
## [0.2.5] - 2024-10-25
6+
7+
+ Update - `trial_type` to varchar(24) in `TrialType` table
8+
59
## [0.2.4] - 2024-08-23
610

711
+ Update - EventType to varchar(32)
@@ -48,6 +52,8 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
4852
+ Add - AlignmentEvent design to capture windows relative to an event
4953
+ Add - Black formatting into code base
5054

55+
[0.2.5]: https://github.com/datajoint/element-event/releases/tag/0.2.5
56+
[0.2.4]: https://github.com/datajoint/element-event/releases/tag/0.2.4
5157
[0.2.3]: https://github.com/datajoint/element-event/releases/tag/0.2.3
5258
[0.2.2]: https://github.com/datajoint/element-event/releases/tag/0.2.2
5359
[0.2.1]: https://github.com/datajoint/element-event/releases/tag/0.2.1

element_event/trial.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ class TrialType(dj.Lookup):
120120
"""Set of unique trial types present within a recording session
121121
122122
Attributes:
123-
trial_type ( varchar(16) ): Name of trial type
123+
trial_type ( varchar(24) ): Name of trial type
124124
trial_type_description ( varchar(256) ): Optional. Long Description.
125125
"""
126126

127127
definition = """
128-
trial_type : varchar(16)
128+
trial_type : varchar(24)
129129
---
130130
trial_type_description='' : varchar(256)
131131
"""

element_event/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package metadata."""
22

3-
__version__ = "0.2.4"
3+
__version__ = "0.2.5"

0 commit comments

Comments
 (0)