chore: add todo for enhancing db connections
This commit is contained in:
parent
2e02aafbae
commit
5f3b776406
1 changed files with 3 additions and 0 deletions
|
|
@ -24,6 +24,9 @@ class DatasetDatabase(Base):
|
|||
vector_database_key = Column(String, unique=False, nullable=True)
|
||||
graph_database_key = Column(String, unique=False, nullable=True)
|
||||
|
||||
# TODO: Instead of specifying and forwawrding all these individual fields, consider using a JSON field to store
|
||||
# configuration details for different database types. This would make it more flexible to add new database types
|
||||
# without changing the database schema.
|
||||
graph_database_username = Column(String, unique=False, nullable=True)
|
||||
graph_database_password = Column(String, unique=False, nullable=True)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue