from app import create_app, db
from app.models.learning import VocationalContent

def check_construction():
    app = create_app('development')
    with app.app_context():
        count = VocationalContent.query.filter_by(category='Construction').count()
        print(f"Construction: {count} videos")

if __name__ == '__main__':
    check_construction()
