Skip to content

Commit 062f5cf

Browse files
committed
char -> varchar
1 parent 94fd4b6 commit 062f5cf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44

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

89
## [0.1.3] - 2022-10-11
910
+ Update - CICD workflows for PyPI release

element_miniscope/miniscope.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,14 +349,14 @@ class ProcessingMethod(dj.Lookup):
349349
"""Method or analysis software to process miniscope acquisition.
350350
351351
Attributes:
352-
processing_method (foreign key, char16): Recording processing method (e.g. CaImAn).
352+
processing_method (foreign key, varchar16): Recording processing method (e.g. CaImAn).
353353
processing_method_desc (varchar(1000) ): Additional information about the processing method.
354354
"""
355355

356356
definition = """
357357
# Method, package, analysis software used for processing of miniscope data
358358
# (e.g. CaImAn, etc.)
359-
processing_method: char(16)
359+
processing_method: varchar(16)
360360
---
361361
processing_method_desc='': varchar(1000)
362362
"""

0 commit comments

Comments
 (0)