#!/usr/bin/env python3
"""
Create process_services table for multiple service records
"""
from app import app
from models import db, ProcessService

with app.app_context():
    print("Creating process_services table...")

    # Create the table
    db.create_all()

    print("✅ Process services table created successfully!")
