diff --git a/app/core/models/my_network.py b/app/core/models/my_network.py index 561eee1..9dc6c43 100644 --- a/app/core/models/my_network.py +++ b/app/core/models/my_network.py @@ -41,7 +41,7 @@ class RemoteContentIndex(AlchemyBase): decrypted_hash = Column(String(128), nullable=True) # Decrypted content hash, available once permission is granted ton_address = Column(String(128), nullable=True) # TON network address for the content onchain_index = Column(Integer, nullable=True) # Onchain index or reference on a blockchain - metadata = Column(JSON, nullable=False, default={}) # Additional metadata for flexible content description + meta = Column(JSON, nullable=False, default={}) # Additional metadata for flexible content description last_updated = Column(DateTime, nullable=False, default=datetime.utcnow) # Timestamp of the last update created_at = Column(DateTime, nullable=False, default=datetime.utcnow) # Record creation timestamp