Skip to content

Commit 74d8686

Browse files
author
Thinh Nguyen
authored
Merge pull request #38 from kushalbakshi/staging
Update filepath attribute in `BehaviorRecording.File` to `varchar(256)`
2 parents c3cbe5f + bc12f65 commit 74d8686

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 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.3.1] - 2024-01-12
6+
7+
+ Update - `BehaviorRecording.File` table's attribute `filepath` length to `varchar(256)`
8+
59
## [0.3.0] - 2023-11-09
610

711
+ Add - `BehaviorTimeSeries` table

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 DataJoint
3+
Copyright (c) 2024 DataJoint
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

element_event/event.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,12 @@ class File(dj.Part):
128128
129129
Attributes:
130130
BehaviorRecording (foreign key): Behavior recording primary key.
131-
filepath ( varchar(64) ): file path of video, relative to root data dir.
131+
filepath ( varchar(256) ): file path of video, relative to root data dir.
132132
"""
133133

134134
definition = """
135135
-> master
136-
filepath : varchar(64)
136+
filepath : varchar(256)
137137
"""
138138

139139

element_event/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = "0.3.0"
2+
__version__ = "0.3.1"

0 commit comments

Comments
 (0)