diff options
author | Frederick Muriuki Muriithi | 2025-05-30 13:34:01 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-05-30 13:34:01 -0500 |
commit | 99f3724fa5ed573fc883cc15cf5e1ae8139786b0 (patch) | |
tree | eb193fe557826fdc300f025807200d24e8ed90a2 /uploader/phenotypes/models.py | |
parent | f2b07d7351cc377c904f5ba9654ed85165ff8962 (diff) | |
download | gn-uploader-99f3724fa5ed573fc883cc15cf5e1ae8139786b0.tar.gz |
Fix typo: Fix table name.
Diffstat (limited to 'uploader/phenotypes/models.py')
-rw-r--r-- | uploader/phenotypes/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uploader/phenotypes/models.py b/uploader/phenotypes/models.py index 498a48b..2843d06 100644 --- a/uploader/phenotypes/models.py +++ b/uploader/phenotypes/models.py @@ -302,7 +302,7 @@ def create_new_phenotypes(conn: mdb.Connection, cursor.executemany( ("INSERT INTO " - "Phenotypes(Pre_publication_description, Original_description, Units, Authorized_Users) " + "Phenotype(Pre_publication_description, Original_description, Units, Authorized_Users) " "VALUES (%(id)s, %(description)s, %(units)s, 'robwilliams') " "RETURNING *"), tuple(batch)) |