Skip to content

Commit

Permalink
Merge pull request #38 from kushalbakshi/staging
Browse files Browse the repository at this point in the history
Update filepath attribute in `BehaviorRecording.File` to `varchar(256)`
  • Loading branch information
Thinh Nguyen authored Jan 16, 2024
2 parents c3cbe5f + bc12f65 commit 74d8686
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## [0.3.1] - 2024-01-12

+ Update - `BehaviorRecording.File` table's attribute `filepath` length to `varchar(256)`

## [0.3.0] - 2023-11-09

+ Add - `BehaviorTimeSeries` table
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 DataJoint
Copyright (c) 2024 DataJoint

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions element_event/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ class File(dj.Part):
Attributes:
BehaviorRecording (foreign key): Behavior recording primary key.
filepath ( varchar(64) ): file path of video, relative to root data dir.
filepath ( varchar(256) ): file path of video, relative to root data dir.
"""

definition = """
-> master
filepath : varchar(64)
filepath : varchar(256)
"""


Expand Down
2 changes: 1 addition & 1 deletion element_event/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = "0.3.0"
__version__ = "0.3.1"

0 comments on commit 74d8686

Please sign in to comment.