File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 """
You can’t perform that action at this time.
0 commit comments