Added following:
1. Dynamic metadata retrieval, refactored function 2. Load with using marshmallow, allows dynamic fields now 3. Added chunkers, different varieties 4. Fixed PDF loading so it is better standardized
This commit is contained in:
parent
2a516c83c3
commit
1a284ec127
1 changed files with 0 additions and 1 deletions
|
|
@ -15,7 +15,6 @@ class MetaDatas(Base):
|
|||
user_id = Column(String, ForeignKey('users.id'), index=True)
|
||||
version = Column(String, nullable=False)
|
||||
contract_metadata = Column(String, nullable=False)
|
||||
contract_schema = Column(String, nullable=False)
|
||||
memory_id = Column(String, ForeignKey('memories.id'), index=True)
|
||||
created_at = Column(DateTime, default=datetime.utcnow)
|
||||
updated_at = Column(DateTime, default=datetime.utcnow, onupdate=datetime.utcnow)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue