1fedd683e0
Stand: agent-06 (Audit-Log), agent-05 (Krankmeldung), agent-07 Phase 1 (Personalnummer), Busylight-Pull-Integration, TOTP/2FA, Abwesenheiten, Zeiterfassung, Kiosk-Grundgerüst. Migrations 0001–0023 deployed auf 192.168.1.137 + .164. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
420 B
Python
22 lines
420 B
Python
"""remove projects table
|
|
|
|
Revision ID: 0014_remove_projects
|
|
Revises: 0013_projects
|
|
Create Date: 2026-03-28
|
|
"""
|
|
from alembic import op
|
|
|
|
revision = "0014_remove_projects"
|
|
down_revision = "0013_projects"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
op.drop_constraint("fk_time_entries_project_id", "time_entries", type_="foreignkey")
|
|
op.drop_table("projects")
|
|
|
|
|
|
def downgrade() -> None:
|
|
pass
|