File size: 216 Bytes
b7f0a53
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from alembic import op
from sqlalchemy import Inspector


def get_existing_tables():
    con = op.get_bind()
    inspector = Inspector.from_engine(con)
    tables = set(inspector.get_table_names())
    return tables