Skip to content

Commit

Permalink
adjusted length of fields of varchar
Browse files Browse the repository at this point in the history
  • Loading branch information
MilagrosMarin committed Dec 11, 2023
1 parent 5b12e5e commit cc24a03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions element_deeplabcut/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ class BodyPart(dj.Lookup):
Attributes:
body_part ( varchar(32) ): Body part short name.
body_part_description ( varchar(1000),optional ): Full description
body_part_description ( varchar(300),optional ): Full description
"""

definition = """
body_part : varchar(32)
---
body_part_description='' : varchar(1000)
body_part_description='' : varchar(300)
"""

@classmethod
Expand Down Expand Up @@ -307,7 +307,7 @@ class Model(dj.Manual):
config_template (longblob): Dictionary of the config for analyze_videos().
project_path ( varchar(255) ): DLC's project_path in config relative to root.
model_prefix ( varchar(32) ): Optional. Prefix for model files.
model_description ( varchar(1000) ): Optional. User-entered description.
model_description ( varchar(300) ): Optional. User-entered description.
TrainingParamSet (foreign key): Optional. Training parameters primary key.
Note:
Expand Down

0 comments on commit cc24a03

Please sign in to comment.