Files
core-api/alembic
Jeroen SchweitzerandClaude Opus 4.5 e85c9a123d
Build and Push / build (release) Successful in 50s
feat: add groups management API
- GET /auth/groups - list groups with search/pagination
- POST /auth/groups/sync-from-authentik - bulk sync from Authentik
- Group model and database migration

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 22:28:06 +01:00
..
2026-01-01 22:28:06 +01:00

Alembic Migrations for Core-API

This directory contains database migrations managed by Alembic.

Commands:
  # Generate a new migration (after changing models)
  alembic revision --autogenerate -m "description"

  # Apply all pending migrations
  alembic upgrade head

  # Rollback last migration
  alembic downgrade -1

  # View migration history
  alembic history

  # View current revision
  alembic current

See https://alembic.sqlalchemy.org for more documentation.