File size: 187 Bytes
69381eb
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from app import app
from sqlalchemy import inspect

with app.app_context():
    from models import db
    inspector = inspect(db.engine)
    print("Tables:", inspector.get_table_names())