Automated Action 11dd11a6ff Fix database migration import path error
- Add project root to Python path in migrations/env.py
- Ensure all models are properly imported in base_models.py
- Fix import statements for proper module resolution
2025-06-08 18:16:20 +00:00
..

# Alembic Migrations

This directory contains database migrations for the application.

To apply migrations:
```
alembic upgrade head
```

To create a new migration:
```
alembic revision --autogenerate -m "description of changes"
```

For SQLite, we use the `render_as_batch=True` option to enable 
batch migrations, which allows for more complex schema changes
that would otherwise not be supported by SQLite.