diff options
author | BonfaceKilz | 2021-06-03 11:08:58 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-06-03 21:58:31 +0300 |
commit | 5d361fe5102a11afbd56aaab30e4a75a332c3e99 (patch) | |
tree | 81d61039106d9c283984c5b7507b618c074f3af1 /gn3/db/metadata_audit.py | |
parent | 8d29add407d5662995dbc9e94901636b15d32475 (diff) | |
download | genenetwork3-5d361fe5102a11afbd56aaab30e4a75a332c3e99.tar.gz |
Add data structures for the table metadata_audit
Diffstat (limited to 'gn3/db/metadata_audit.py')
-rw-r--r-- | gn3/db/metadata_audit.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gn3/db/metadata_audit.py b/gn3/db/metadata_audit.py new file mode 100644 index 0000000..6e22b32 --- /dev/null +++ b/gn3/db/metadata_audit.py @@ -0,0 +1,26 @@ +# pylint: disable=[R0902, R0903] +"""This contains all the necessary functions that access the metadata_audit +table from the db + +""" +from dataclasses import dataclass +from typing import Optional + + +@dataclass(frozen=True) +class MetadataAudit: + """Data Type that represents a Phenotype""" + dataset_id: int + editor: str + json_data: str + time_stamp: Optional[str] = None + + +# Mapping from the MetadataAudit dataclass to the actual column names in the +# database +metadata_audit_mapping = { + "dataset_id": "dataset_id", + "editor": "editor", + "json_data": "json_data", + "time_stamp": "time_stamp", +} |