#!/usr/bin/env python3
"""Database migration script to add product variants"""

from app import app, db
from models import ProductVariant

def migrate():
    with app.app_context():
        # Create all tables (this will create the new variant table)
        db.create_all()
        print("Database migration completed successfully!")

if __name__ == "__main__":
    migrate()