Skip to content

Commit

Permalink
char -> varchar
Browse files Browse the repository at this point in the history
  • Loading branch information
kushalbakshi committed Nov 1, 2022
1 parent 94fd4b6 commit 062f5cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and

## [0.1.4] - 2022-10-21
+ Add - mkdocs deployment with workflow API docs
+ Update - processing_method: char(16) -> varchar(16)

## [0.1.3] - 2022-10-11
+ Update - CICD workflows for PyPI release
Expand Down
4 changes: 2 additions & 2 deletions element_miniscope/miniscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,14 +349,14 @@ class ProcessingMethod(dj.Lookup):
"""Method or analysis software to process miniscope acquisition.
Attributes:
processing_method (foreign key, char16): Recording processing method (e.g. CaImAn).
processing_method (foreign key, varchar16): Recording processing method (e.g. CaImAn).
processing_method_desc (varchar(1000) ): Additional information about the processing method.
"""

definition = """
# Method, package, analysis software used for processing of miniscope data
# (e.g. CaImAn, etc.)
processing_method: char(16)
processing_method: varchar(16)
---
processing_method_desc='': varchar(1000)
"""
Expand Down

0 comments on commit 062f5cf

Please sign in to comment.