From e2b6ef112349432f7701dbfc0758c38c2335918d Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Tue, 8 Mar 2022 09:08:44 +0000 Subject: [PATCH] Adding db_reference in latestTransactions table --- models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/models.py b/models.py index 0af01fc..49df80b 100644 --- a/models.py +++ b/models.py @@ -273,6 +273,7 @@ class LatestTransactions(LatestCacheBase): jsonData = Column('jsonData', String) transactionType = Column('transactionType', String) parsedFloData = Column('parsedFloData', String) + db_reference = Column('db_reference', String) class LatestBlocks(LatestCacheBase):