From c6f30c6f766a521ee7b9d97de7ddfdf386f529a8 Mon Sep 17 00:00:00 2001 From: user Date: Tue, 25 Feb 2025 14:51:54 +0300 Subject: [PATCH] fix misprint --- app/core/models/my_network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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