from app import create_app, db
from app.models.vocabulary import Vocabulary

app = create_app()
with app.app_context():
    # Create the vocabulary table
    db.create_all()
    print("Vocabulary table created successfully!")