from app.database import SessionLocal from app.models import User from app.auth import get_password_hash import uuid from datetime import datetime db = SessionLocal() user = User( id=uuid.uuid4(), email="shakauthossain0@gmail.com", password_hash=get_password_hash("bangladesh"), full_name="Admin User", is_active=True, created_at=datetime.utcnow(), updated_at=datetime.utcnow() ) db.add(user) db.commit() db.refresh(user) print("✅ User created:", user.email)