Forgot to commit alembic/env.py before

pull/27/head
Neeraj Kashyap 2021-07-28 20:59:12 -07:00
rodzic a046d33804
commit a52a2b9453
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -25,13 +25,14 @@ target_metadata = ExplorationBase.metadata
# can be acquired:
# my_important_option = config.get_main_option("my_important_option")
# ... etc.
from moonstreamdb.models import EthereumBlock, EthereumTransaction, EthereumPendingTransaction, ESDEventSignature, ESDFunctionSignature
from moonstreamdb.models import EthereumBlock, EthereumTransaction, EthereumPendingTransaction, EthereumSmartContract, ESDEventSignature, ESDFunctionSignature
def include_symbol(tablename, schema):
return tablename in {
EthereumBlock.__tablename__,
EthereumTransaction.__tablename__,
EthereumSmartContract.__tablename__,
EthereumPendingTransaction.__tablename__,
ESDEventSignature.__tablename__,
ESDFunctionSignature.__tablename__,