Skip to content

Commit

Permalink
#1979 - add notification column to VA Profile Local Cache (#2076)
Browse files Browse the repository at this point in the history
#1979 - add notification column to VA Profile Local Cache (#2076)
  • Loading branch information
MackHalliday authored Oct 22, 2024
1 parent 240ad7a commit 97a3356
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions migrations/versions/0373_va_profile_notification.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
"""
Revision ID: 0373_va_profile_notification
Revises: 0372_remove_service_id_index
Create Date: 2024-10-22 12:56:00
"""
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects.postgresql import UUID

revision = '0373_va_profile_notification'
down_revision = '0372_remove_service_id_index'

def upgrade():
op.add_column('va_profile_local_cache', sa.Column('notification_id', UUID(), nullable=True))

def downgrade():
op.drop_column('va_profile_local_cache', 'notification_id')

0 comments on commit 97a3356

Please sign in to comment.