blob: 6e22b320433451a4c9bd00c77a9ef31949df9d96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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",
}
|