File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 22
33Observes [ 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
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2022 DataJoint
3+ Copyright (c) 2024 DataJoint
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11"""Package metadata."""
2- __version__ = "0.3.0 "
2+ __version__ = "0.3.1 "
You can’t perform that action at this time.
0 commit comments