fix: add missing created_at and deleted_at columns to notification_preferences

- Remove duplicate updated_at from NotificationPreference model (inherited from TimestampMixin)
- Add migration 0018 to add created_at and deleted_at columns
- Fixes 500 error on GET /notifications/types and /preferences
This commit is contained in:
Agent Zero
2026-07-15 21:13:32 +02:00
parent b0e987f790
commit 21f47b91dc
2 changed files with 30 additions and 3 deletions
@@ -0,0 +1,30 @@
"""Fix notification_preferences table: add missing created_at and deleted_at columns.
Revision ID: 0018
Revises: 0017
"""
from alembic import op
import sqlalchemy as sa
revision = "0018"
down_revision = "0017"
branch_labels = None
depends_on = None
def upgrade() -> None:
# Add missing columns from TimestampMixin and SoftDeleteMixin
op.add_column(
"notification_preferences",
sa.Column("created_at", sa.DateTime(timezone=True), nullable=False, server_default=sa.func.now()),
)
op.add_column(
"notification_preferences",
sa.Column("deleted_at", sa.DateTime(timezone=True), nullable=True),
)
def downgrade() -> None:
op.drop_column("notification_preferences", "deleted_at")
op.drop_column("notification_preferences", "created_at")
-3
View File
@@ -85,6 +85,3 @@ class NotificationPreference(Base, TenantMixin):
) )
type_key: Mapped[str] = mapped_column(String(20), nullable=False) type_key: Mapped[str] = mapped_column(String(20), nullable=False)
is_enabled: Mapped[bool] = mapped_column(Boolean, nullable=False, default=True) is_enabled: Mapped[bool] = mapped_column(Boolean, nullable=False, default=True)
updated_at: Mapped[datetime] = mapped_column(
DateTime(timezone=True), nullable=False, server_default=func.now()
)